javascript页面定时跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript页面定时跳转相关的知识,希望对你有一定的参考价值。
<body>
<p>操作成功!</p>
<p><span id="time"></span>秒,自动返回主页,<a href="https://www.baidu.com/">返回</a></p>
<script>
function time_back(time_s,url_s){
var time_num= document.getElementById(‘time‘);
time_num.innerhtml=time_s;
if(--time_s>0){
setTimeout("time_back("+time_s+",‘"+url_s+"‘)",1000);
}else{
location.href=url_s;
}
}
time_back(6,‘https://www.baidu.com/‘);
</script>
</body>
以上是关于javascript页面定时跳转的主要内容,如果未能解决你的问题,请参考以下文章