当前位置: 编程技术>jquery
js计算两个字符串时间的天数差的代码
来源: 互联网 发布时间:2014-09-03
本文导语: 1,求两个字符串时间的天数差 var s = ((new Date(paramObj.end_date.replace(/-/g,"/"))) - (new Date(paramObj.start_date.replace(/-/g,"/")))); var day = s/1000/60/60/24 2,Javascript时间差计算函数 Date.prototype.dateDiff = function(interval,objDate){ //若參數不...
1,求两个字符串时间的天数差
var s = ((new Date(paramObj.end_date.replace(/-/g,"/"))) - (new Date(paramObj.start_date.replace(/-/g,"/")))); var day = s/1000/60/60/24
2,Javascript时间差计算函数
Date.prototype.dateDiff = function(interval,objDate){ //若參數不足或 objDate 不是日期物件則回傳 undefined if(arguments.length