最近有用到,特此做个标记、下次用的时候好找。
/* 获取指定月份的最后一天 */ function getMOnthLastDay(year, month) { var d = new Date(0); if (12 == month) { d.setUTCFullYear(year + 1); d.setUTCMonth(0); } else { d.setUTCFullYear(year); d.setMonth(month); } d.setTime(d.getTime() - 1); if (month <= 9) { month = "0" + month; } return year + "-" + month + "-" + d.getUTCDate(); }; console.log(getMOnthLastDay(2018, 2));//结果:2018-02-28
原文:https://www.cnblogs.com/Nick-Hu/p/9365889.html