码迷,mamicode.com
首页 > 其他好文 > 详细

计算当前月有几天

时间:2014-12-07 13:45:26      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   on   div   log   bs   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>计算当前月有几天</title>
<script>
    var oDate=new Date();

    oDate.setMonth(oDate.getMonth()+1, 1);
    // 11-1下个月的月初
    oDate.setDate(0);
    // 10-31   上个月底 
    alert((oDate.getMonth()+1)+-+oDate.getDate());
</script>
</head>

<body>
</body>
</html>

 

计算当前月有几天

标签:style   blog   ar   color   sp   on   div   log   bs   

原文地址:http://www.cnblogs.com/heboliufengjie/p/4149300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!