我的要求是创建一个包含从 date 和 to date 两个日期字段的月份
起始日期应该是月份的开始日期,结束日期应该是月份的结束日期..如果起始日期不是开始日期,它应该显示消息,请选择月份的起始日期,也与日期相同
我试过这段代码
function getDaysInMonth(aDate){
var m = new Number(aDate.getMonth());
var y = new Number(aDate.getYear());
var tmpDate = new Date(y, m, 28);
var checkMonth = tmpDate.getMonth();
var lastDay = 27;
while(lastDay <= 31){
temp = tmpDate.setDate(lastDay + 1);
if(checkMonth != tmpDate.getMonth())
break;
lastDay++
}
return lastDay;
}
它不工作请帮助我