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

jwuery比较时间大小

时间:2017-10-09 19:39:11      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:ret   ane   val   lda   interval   begin   end   开始时间   nbsp   

  // 处理时间
        function NewDate(str) {
            str = str + "";
            str = str.split(‘-‘);
            var date = new Date();
            date.setUTCFullYear(str[0], str[1] - 1, str[2]);
            date.setUTCHours(0, 0, 0, 0);
            return date;
        }


            var bDate = NewDate($("#PlanBeginDate").val());
            var eDate = NewDate($("#PlanEndDate").val());
            var IntervalDay = ((eDate - bDate) / 1000 / 60 / 60 / 24) + 1; //间隔时间
            if (IntervalDay <= 0) {
                alert("开始时间晚于结束时间!");
                return false;
            }

jwuery比较时间大小

标签:ret   ane   val   lda   interval   begin   end   开始时间   nbsp   

原文地址:http://www.cnblogs.com/ment/p/7642472.html

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