慕粉3279124
2016-06-02 12:20
无限倒计时 最后乱码 到零不能实现跳转
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<p><span id="times">5</span>秒钟后回到主页<a href=href="javascript:count();">返回</a></p>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var a=document.getElementById('times').innerHTML;
function myTime(){
a--;
document.getElementById('times').innerHTML=a;
if(a<0){
location.assign('http//:www.imooc.com');
}
}
setInterval('myTime()',1000);
//通过window的location和history对象来控制网页的跳转。
function count(){
window.history.back()
}
</script>
</body>
</html>
location.assign('http//:www.imooc.com'); 里面的地址错了应该是
location.assign('http://www.imooc.com');
if判断那里 改成等于0试试
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题