为什么不可以使用while循环?
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>加载成功</h1>
<p id="pid"></p>
<button onclick="back1()">返回</button>
<script type="text/javascript">
var num = 5;
var i;
function ref(){
while(num>0){
document.getElementById("pid").innerHTML = num +"秒后跳转";
num--;
i = setTimeout(ref,1000);
}
clearTimeout(i);
location.assign("http://www.imooc.com");
}
ref();
function back1(){
window.history.back();
}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>
只闪了一下立马跳转了