jquery 时间大小比较和获取当前时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 时间大小比较和获取当前时间相关的知识,希望对你有一定的参考价值。
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 时间大小比较和获取当前时间的主要内容,如果未能解决你的问题,请参考以下文章