js 获得离结束时间的剩余天数

function Thistime(){//当前日期

var date = new Date();

var year = date.getFullYear(); 

var month = date.getMonth()+1;  

var day = date.getDate();

var time = year+”/”+month+”/”+day;

return time;

}

 function DateDiff(sDate1, sDate2) {  //sDate1和sDate2是yyyy-MM-dd格式

    var aDate, oDate1, oDate2, iDays;

    aDate = sDate1.split(“-“);

    oDate1 = new Date(aDate[1] + ‘-‘ + aDate[2] + ‘-‘ + aDate[0]);  //转换为yyyy-MM-dd格式

    aDate = sDate2.split(“-“);

    oDate2 = new Date(aDate[1] + ‘-‘ + aDate[2] + ‘-‘ + aDate[0]);

    iDays = parseInt(Math.abs(oDate1 – oDate2) / 1000 / 60 / 60 / 24); //把相差的毫秒数转换为天数

    return iDays;  //返回相差天数

}

    原文作者:小蟹蟹蟹蟹
    原文地址: https://blog.csdn.net/qq_37683424/article/details/80818335
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞