Js 获取当前月的天数


 function getDays() {
            //构造当前日期对象
            var date = new Date();

            //获取年份
            var year = date.getFullYear();

            //获取当前月份
            var mouth = date.getMonth() + 1;

            //定义当月的天数;
            var days;

            //当月份为二月时,根据闰年还是非闰年判断天数
            if (mouth == 2) {
                days = year % 4 == 0 ? 29 : 28;

            }
            else if (mouth == 1 || mouth == 3 || mouth == 5 || mouth == 7 || mouth == 8 || mouth == 10 || mouth == 12) {
                //月份为:1,3,5,7,8,10,12 时,为大月.则天数为31;
                days = 31;
            }
            else {
                //其他月份,天数为:30.
                days = 30;

            }
            return days;
        }



欢迎评论。。。。让我看到你的反馈。。。。

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM