<!DOCTYPE?html>
<html>
?<head>
??<title>瀏覽器對(duì)象</title>??
??<meta?http-equiv="Content-Type"?content="text/html;?charset=gkb"/>???
?</head>
?<body>
??<!--先編寫好網(wǎng)頁布局-->
?<H4>操作成功</H4>
??<p>
?????<b?id="second">5</b>秒后回到主頁 <a?href="javascript:goBack();">返回</a>??
??</p>
?
??<script?type="text/javascript">??
?var?sec=document.getElementById("oo")
???//獲取顯示秒數(shù)的元素,通過定時(shí)器來更改秒數(shù)。
???var?i?=5
???var?timer=setInterval(function()
???{i--;?
???sec.innerHTML=i
???if(i==1){window.location.}
???
???},1000)
???//通過window的location和history對(duì)象來控制網(wǎng)頁的跳轉(zhuǎn)。
???function?goBack(){window.history.go(-1)}
?</script>?
</body>
</html>
哪里出了問題啊,為什么會(huì)亂碼
幕布斯6906120
2015-12-29 19:54:06