慕粉1551438955
2017-04-26 17:24
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<span id="second">5</span>秒后返回主页<a href="javascript::window.history.back()">返回</a>
<script type="text/javascript"> //获取显示秒数的元素,通过定时器来更改秒数。 //通过window的location和history对象来控制网页的跳转。
var time= document.getElementById("second").innerHTML;
var i=setInterval("if(time>1){
document.getElementById('second').innerHTML=--time;
}else{
location.assign(
"http://www.imooc.com");
}",1000);
</script>
</body>
</html>
你的双引号弄错了,在双引号里面应该用单引号包裹,不过也不推荐这样写setInterval里面的语句,要是封装成一个function,要么直接function(){//这里面写代码}
function clock() { num--; document.getElementById("first").innerHTML=num; if(num==0) { location.assign("http://www.imooc.com"); } } setInterval(clock,1000);
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题