杨念
2016-10-02 15:26
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<span id=daoshu>5</span><span>秒后回到主页 </span>
<a href="javascript:houtui()">返回</a>
<script type="text/javascript">
var shuzi=document.getElementById("daoshu").innerHTML;//定义函数倒数
//获取显示秒数的元素,通过定时器来更改秒数。
function aa()
{
shuzi--;
document.getElementById("daoshu").innerHTML=shuzi;
if(shuzi==0)
{
loction.assign("https://www.baidu.com");
}
}
setInterval("aa()",1000);
//通过window的location和history对象来控制网页的跳转。
function houtui(){
window.history.back()
}
</script>
</body>
</html>
if(shuzi==0)
{
loction.assign("https://www.baidu.com");
}
此块代码中 location打成了 loction 少了一个a,单词没拼对
除了刚才那个朋友说的,不跳转的问题,还有一个问题就是你没有clearInterval() 清除定时器,这样会一直计数。
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题