Js倒计时

距离下一个元旦还有多久的倒计时

    window.onload=function () {
        var oSpan=document.getElementsByTagName('span')[0];
        var oDate=new Date();
            oDate.setFullYear(2018,1,1);
            oDate.setHours(0,0,0);
        var oTag=oDate.getTime(); //目标时间
       function aaa() {
           var oDate=new Date();
           var iTag=oDate.getTime(); //现在时间
           var oS=parseInt((oTag-iTag)/1000);//获取秒
           var D=parseInt(oS/86400);//多少天
           oS%=86400;
           var H=parseInt(oS/3600)//多少小时
           oS%=3600;
           var F=parseInt(oS/60);//多少分钟
           oS%=60; //多少秒
           oSpan.innerHTML='距离元旦还有'+D+'天'+H+'时'+F+'分'+oS+'秒';
       }
       aaa();
        setInterval(aaa,30);
    }

你可能感兴趣的:(Js倒计时)