js 取该月的天数

function getDaysInMonth(year, month) {
var temp = new Date(year, month, 0);
return temp.getDate();
}

posted on 2013-12-20 09:55  都是脚本惹的祸  阅读(86)  评论(0编辑  收藏  举报

导航