一个跳转提示页面---JS
Posted 陈咪咪个人网站
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个跳转提示页面---JS相关的知识,希望对你有一定的参考价值。
//一个跳转提示页面
<script type="text/javascript">
var s=5;
function go(){
document.getElementById("chan").innerhtml=s;
s=s-1;
if (s==0){
window.location.href="http://www.imooc.com/";
}
window.setTimeout(go,1000);
}
go();
function goBear(){
window.history.back();
}
</script>
<h3>操作成功</h3>
<p><span id="chan">5</span>秒后返回到主页<a href="http://www.imooc.com/" onclick="goBear()" >返回</a></p>
以上是关于一个跳转提示页面---JS的主要内容,如果未能解决你的问题,请参考以下文章