jq 开始时间和终止时间的间隔

function lDateDiff(endDate,startDate){
	var oDate1, oDate2, iDays;
    oDate1 = new Date(endDate.replace(/-/g, "/")); //转换为yyyy/MM/dd格式
    oDate2 = new Date(startDate.replace(/-/g, "/"));  //转换为yyyy/MM/dd格式
    var day = 24 * 3600 * 1000;
    iDays = ((oDate1 - oDate2) /day) * 1 + 1; //把相差的毫秒数转换为天数
    return iDays;  //返回相差天数
}

你可能感兴趣的:(JavaScript,Jquery)