js實(shí)現(xiàn)跳轉(zhuǎn)頁(yè)面
<script type="text/javascript">
? ? //使用setInterval計(jì)時(shí)器
? ? var a = window.setInterval(add,1000);
? ? function add(){
? ? //從標(biāo)簽ckx中獲取t元素
? ? var t = document.getElementById('ckx').innerHTML;
? ? //利用if語(yǔ)句進(jìn)行數(shù)字遞減
? ? if(t>0){
? ? t--;
? ? document.getElementById('ckx').innerHTML=t;
? ? }else if(t == 0){
? ? ? ? ? ? window.open("http://www.baidu.com",'_self');
? ? ? ? ? ? clearInterval(a); ? ?//關(guān)閉計(jì)時(shí)器
? ? }
? ? }
? ? ? </script>
2017-09-13