大虾来了
2015-08-21 15:57
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<p>
<strong>操作成功</strong><br/><br/>
<strong><span id="num" >5</span>
</strong>秒后回到主页
<a href="www.baidu.com">返回</a>
</p>
<script type="text/javascript">
var num=5;
var i=setInterval(showTime(),1000);
function showTime()
{
document.getElementById("num").innerHtml =num;
num--;
if(num==0)
{
location.href="www.imooc.com";
clearInterval(i);
}
}
</script>
</body>
</html>
innerHTML ()大写
setInterval("showTime()",1000);调用方法加上双引号
document.getElementById("num").innerHTML =num; innerHTML是大写的
var i=setInterval(showTime , 1000); showTime不要加括号,加括号立即执行了
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<p>
<strong>操作成功</strong><br/><br/>
<strong><span id="num">5</span>
</strong>秒后回到主页
<a href="www.baidu.com">返回</a>
</p>
<script type="text/javascript">
var num=5;
var i=setInterval("showTime()",1000);
function showTime()
{
num--;
document.getElementById("num").innerHTML = num;
if(num==0)
{
location.href="http://www.imooc.com";
clearInterval(i);
}
}
</script>
</body>
</html>
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题