5秒后,页面跳转
Posted 薄冰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5秒后,页面跳转相关的知识,希望对你有一定的参考价值。
html:
<img src="img/tutu.png"/>
<div>
<span>跳过 5s</span>
</div>
jquery:
$(function(){
$(‘img‘).css(‘height‘,$(window).height());
var text = 5;
var DSQ = setInterval(function(){
text --;
$(‘div span‘).text(‘跳过 ‘+text+‘s‘);
if(text == 0){
clearInterval(DSQ);
//跳转
Jockey.send();//dadkja
}
},1000)
})
以上是关于5秒后,页面跳转的主要内容,如果未能解决你的问题,请参考以下文章