1.获取指定年月有多少周
/**
* 获得一个月的周数
* @param {} y {xxxx}4位数
* @param {} m {0-11}
* @return {}
*/
function getWeekCounts( y, m ) {
var first = new Date(y, m,).getDay();
var last = - new Date(y, m, ).getDate();
return Math.ceil( (first + last)/ );
}
2022-08-30 18:13:01
1.获取指定年月有多少周
/**
* 获得一个月的周数
* @param {} y {xxxx}4位数
* @param {} m {0-11}
* @return {}
*/
function getWeekCounts( y, m ) {
var first = new Date(y, m,).getDay();
var last = - new Date(y, m, ).getDate();
return Math.ceil( (first + last)/ );
}