仅供参考,在sublime上写在chorme上自己调试代码就没问题,这个在线的内嵌浏览器感觉很抽风
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1><br>
<span id="second">5</span>秒后回到主页 <a href="javascript:back()">返回</a>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var second = parseInt(document.getElementById("second").innerHTML);
//返回主页
function toMain() {
window.location="http://www.imooc.com";
}
function back() {
window.history.back();
}
//通过window的location和history对象来控制网页的跳转。
function toTime() {
second -= 1;
setTimeout("toTime()",1000);
document.getElementById("second").innerHTML = second;
if (second == 0) {
toMain();
}
}
setTimeout("toTime()",1000);
debugger;
</script>
</body>
</html>