不知道问题出在哪里
自己看不出来还是没看出来到底哪里出了问题,求解惑
2016-03-10
你要求还真多:
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<p><span>5</span>秒后回到主页<a href="javascript:history.go(-1)">返回</a></p>
<script type="text/javascript">
//通过window的location和history对象来控制网页的跳转。
function open(){
window.location.assign('http://www.imooc.com');
}
//获取显示秒数的元素,通过定时器来更改秒数。
var time = document.getElementsByTagName('span')[0].innerHTML;
function timer(){
time = time-1;
document.getElementsByTagName('span')[0].innerHTML = time;
if(time < 1)open();
}
setInterval(timer,1000);
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<h1>操作成功</h1>
<div class="kaka">
<span id="sp">
</span>
秒之后返回主页面
</div>
<script type="text/javascript">
var b=5;
document.getElementById("sp").innerHTML=b;
function a(){
document.getElementById("sp").innerHTML=b;
if(b==0){
window.location.href="http://www.imooc.com/";
}
else{
b--;
}
}
setInterval("a()",1000);
</script>
</body>
</html>
你要的动态效果
那就这样:
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<p><span>5</span>秒后回到主页<a href="javascript:history.go(-1)">返回</a></p>
<script type="text/javascript">
//通过window的location和history对象来控制网页的跳转。
function open(){
window.location.assign('http://www.imooc.com');
}
//获取显示秒数的元素,通过定时器来更改秒数。
var time = document.getElementsByTagName('span')[0].innerHTML;
setTimeout(open,time+'000');
</script>
</body>
</html>
骚年 你搞得太复杂了!
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<p>5秒后回到主页<a href="javascript:history.go(-1)">返回</a></p>
<script type="text/javascript">
//通过window的location和history对象来控制网页的跳转。
function open(){
window.location('http://www.imooc.com');
}
//获取显示秒数的元素,通过定时器来更改秒数。
setTimeout(open,1000);
</script>
</body>
</html>
举报