标签:js date.parse 时间相减
例子:
var date = new Date();
var current_time = date.getTime(); //当前时间 毫秒var remainder_time = end_time - current_time; //结束时间-当前时间的剩余时间 毫秒
注:replace(/-/g,"/")一定要有,不然ie7用Date.parse("2011-09-10 01:40:14")是返回NaN的,会导致无法与当前时间比较,date>now永远返回false
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:js date.parse 时间相减
原文地址:http://blog.csdn.net/huihuangjiuai/article/details/47317773