<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<span id="toy"></span>秒后返回主页<a href="#">返回</a>
<script type="text/javascript">
var time=5;
function box()
{
document.getElementById("toy").innerHTML=time;
time=time-1;
if(time==0){
alert("该跳转了")
break;
}
}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
setTimeout("box()",1000)
</script>
</body>
</html>
请问这段代码问题出现在哪里?检查了几次都发现不了为何不能正常获取
stone310
qq_非诚勿扰_3
相关分类