路墨遥
2015-07-22 02:31
为啥我返回那里一直回不去哦,我之前打开过页面呀
就这个不知道哪里出错了返回不管用
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<p style="font-size:24px;font-weigth:bold;">
操作成功
</p>
<div style="margin-top:20px;">
<span id="count">
5
</span>
秒后回到主页
<a onclick="window.history.back()">
返回
</a>
</div>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var num=5;
setInterval("Time()",1000);
function Time(){
document.getElementById("count").innerHTML=num;
num=num-1;
if(num==1){
location.assign("http://www.baidu.com");
}
}
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
没有代码谁帮你找茬
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题
回答 2
回答 1
回答 4
回答 3
回答 3