1. 程式人生 > >js判斷某年某月有多少天

js判斷某年某月有多少天

.get var RM get new nth 獲取 某月 生成

function getCountDays(ym) {
var curDate = new Date(ym);
/* 獲取當前月份 */
var curMonth = curDate.getMonth();
/* 生成實際的月份: 由於curMonth會比實際月份小1, 故需加1 */
curDate.setMonth(curMonth + 1);
/* 將日期設置為0 */
curDate.setDate(0);
/* 返回當月的天數 */
return curDate.getDate();
}

js判斷某年某月有多少天