为了账号安全,请及时绑定邮箱和手机立即绑定

以下代码,时间到了就页面变成空白。

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title> 
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>  
 </head>
 <body>
  <!--先编写好网页布局-->
  <div>
      <h2>操作成功</h2>
      <p><span id="second">5</span>秒后回到主页&nbsp;</p>
      <a href="http://www.imooc.com/">或点击此处立即前往</a>
      <a href="javascript:back()">返回</a>
  </div>
 
 
  <script type="text/javascript"> 
 var a=document.getElementById("second").innerHTML;
 function time(){
 a--;
 document.getElementById("second").innerHTML=a;
 switch(a){
     case 0:
     location.assign("http://www.imooc.com/")
     break;}
 }
setInterval("time()",1000);
   //获取显示秒数的元素,通过定时器来更改秒数。
function back(){
    window.history.back();
}
   //通过window的location和history对象来控制网页的跳转。
  
 </script>
</body>
</html>

正在回答

2 回答

地址形式错了,http后面少了个s

0 回复 有任何疑惑可以回复我~

window.location.assign("https://www.imooc.com/");

试下这样

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

以下代码,时间到了就页面变成空白。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信