宝慕林2433234
2020-02-25 22:33
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<span id="sec">5</span>秒后返回主页<a href="www.imooc.com" onclick="gb()">返回</a>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var num=5;
function second(){
if(num==0){
clearTimeout(i);
window.location.assign("www.imooc.com");
}
else{
document.getElementById("sec").innerText=num;
num--;
var i=setTimeout("second()",1000);
}
}
//通过window的location和history对象来控制网页的跳转。
function gb(){
window.history.go(-1);
}
second();
</script>
</body>
</html>
window.location.assign("https://www.imooc.com");
这样就可以了
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题