zhangjieying1996
2016-07-20 11:28
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<script type="text/javascript">
function jishu(){
var num=document.detElementById("second");
num=num-1;
document.detElementById("second")=num;
if(num==1){
window.open('www.imooc.com','_blank');
}
else { setTimeout(jishu,1000);}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
}
window.onload=jishu;
</script>
<body>
<!--先编写好网页布局-->
<strong>操作成功<br>
<br>
<b id="second">5</b>
</strong>秒后回到主页<a href="www.imooc.com">返回</a>
</body>
</html>
<p style='font-weight:bold'>操作成功</p>
<span style="font-weight:bold" id='second'>5</span>秒后回到主页 <em><a href='javascript:back()'>返回</a></em>
<script type="text/javascript">
var num=document.getElementById("second").innerHTML
function count()//获取显示秒数的元素,通过定时器来更改秒数
{
num--
document.getElementById('second').innerHTML=num
if(num==0)
{location.assign('www.imooc.com')
}
}
setInterval('count()',1000)
//通过window的location和history对象来控制网页的跳转。
function back()
{
window.history.back()
}
setInterval(jishu(),1000)这一步你没有,上面两部是你有的但是没有innerHTML,还有你那个IF语句中应该是==0,else中的就不用了
var num=document.detElementById("second").innerHTML
getElementById('second').innerHTML=num
getElement 改了还是不行
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题