基于JS实现限时抢购倒计时间表代码
废话不多说了,直接给大家贴代码了,具体代码如下所示:
限时抢购倒计时间表 *{margin:0;padding:0;} #content{width:300px;margin:0auto;padding:10px;background:#eee;border:1pxsolid#999;} #contentpspan{color:red;font:bold20pxArial;} #contentpa{font:12px/23px'宋体';color:#888;} .div1{display:none;} functionfresh() { varendtime=newDate("2110/11/06,12:20:12"); varnowtime=newDate(); varleftsecond=parseInt((endtime.getTime()-nowtime.getTime())/1000); d=parseInt(leftsecond/3600/24); h=parseInt((leftsecond/3600)%24); m=parseInt((leftsecond/60)%60); s=parseInt(leftsecond%60); //document.getElementById("times").innerHTML=__h+"小时"+__m+"分"+__s+"秒"; document.getElementById("times").innerHTML=h+"小时"+m+"分"+s+"秒"; if(leftsecond<=0){ document.getElementById("times").innerHTML="已结束"; clearInterval(sh); } } varsh; sh=setInterval(fresh,1000); 限时抢购啦!
还剩
以上所述是小编给大家介绍的基于JS实现限时抢购倒计时间表代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!