Home  >  Article  >  Web Front-end  >  Use js to implement date countdown effect

Use js to implement date countdown effect

一个新手
一个新手Original
2017-10-09 10:02:141717browse


function FreshTime()
{        var endtime=new Date("2017/9/30,18:05:00");//结束时间
        var nowtime = new Date();//当前时间
        var lefttime=parseInt((endtime.getTime()-nowtime.getTime())/1000); 
        d=parseInt(lefttime/3600/24);
        h=parseInt((lefttime/3600)%24);
        m=parseInt((lefttime/60)%60);
        s=parseInt(lefttime%60);
        document.getElementById("LeftTime").innerHTML=d+"天"+h+"小时"+m+"分"+s+"秒";
}
FreshTime()
var sh;
sh=setInterval(FreshTime,1000);

The above is the detailed content of Use js to implement date countdown effect. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn