码迷,mamicode.com
首页 > Web开发 > 详细

jquery 时间大小比较和获取当前时间

时间:2016-03-17 19:14:00      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:

  var start = new Date(row.InsuranceStime.replace("-", "/").replace("-", "/"));
                        var end = new Date(row.InsuranceEtime.replace("-", "/").replace("-", "/"));
                        // alert(start+"**"+(new Date(‘1900/01/01 00:00:000‘)))
                        if (Date.parse(‘1900/01/01 00:00:000‘) === Date.parse(start) || Date.parse(‘1900/01/01 00:00:000‘) === Date.parse(end)) {
                            return "<font>未投保</font>";
                            
                        } else {
                            var today = new Date(mydate.toDateString() + " " + mydate.toTimeString());
                            if (end < today) {
                                return "<font>已过期</font>";
                            }
                            if (start > today) {
                                return "<font>未生效</font>";
                            }
                            if (row.InsuranceMoney === 0) {
                                return "<font>未投保</font>";
                            } else {
                                return "已投保";
                            }
                        }

 

jquery 时间大小比较和获取当前时间

标签:

原文地址:http://www.cnblogs.com/renfushuai/p/5288538.html

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