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

为什么倒计时没有效果?

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>   
 </head>
 <body>
  <!--先编写好网页布局-->
  <h3>操作成功</h3>
  <p>
      <input type="text" id="count" value="15"/>秒后回到主页
      <a href="#" onclick="goback()">返回</a>
  </p>
  <script type="text/javascript">  
  var num=15;
  document.getElementById("count").style.border="none";
 document.getElementById("count").style.width="18px";
  
  function countdown(){
      num=num-1;
      document.getElementById("count").value=num;
      if(num<=0){window.open("https://www.imooc.com","_self","width=1000,height=500");}
  }
   setInterval("countdown()",2000);
     function goback(){
       window.history.back();
   }
   
 </script> 
</body>
</html>


正在回答

1 回答

你把内容复制出来,自己本地创建一个xxxx.html然后复制进去,打开,能看到倒计时效果

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

举报

0/150
提交
取消

为什么倒计时没有效果?

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