时间:2021-07-01 10:21:17 帮助过:14人阅读
var temp=new Date("选择年/选择月+1/0");
alert(temp.getDate());
就可以了,是不是很方便?校验的话,也可以用这个方法。
下面是使用JS编写的获取某年某月有多少天的getDaysInMonth(year, month)方法:
代码如下:
function getDaysInMonth(year,month){
month = parseInt(month,10)+1;
var temp = new Date(year+"/"+month+"/0");
return temp.getDate();
}
下面是简单的测试代码:
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]