qq_浅秋_04051456
2017-04-05 10:57
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html"; charset="UTF-8"/>
</head>
<body>
<!--先编写好网页布局-->
<span id="second">5</span>
<span> 秒后回到主页</span>
<input type="button" value="返回" onclick="return()">
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var numb=document.getElementById("second").innerHTML;
function count(){
numb--;
document.getElementById("second").innerHTML=numb;
if(numb==0)
{location.assign("www.imooc.com");}
}
setInterval("count()",1000);
//通过window的location和history对象来控制网页的跳转。
function return(){
window.history.go(-1);
}
</script>
</body>
</html>
首先你的numb是通过document.getElementById("second").innerHTML获得的,你又有个numb--,想让它自减。。但是numb获得的是一个字符串类型的数据,它自减不了的
<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 return()
{
window.history.return();
}
assign那里加http试一下
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题