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

setInerval停止

这个代码里面的setInterval是怎么停止的。因为没有clearInterval啊

正在回答

2 回答

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>   
  <style>
      #top{
          width:100%;
          height:100px;
          background-color:red;
          }
        #container{
             width:100%;
          height:300px;
          background-color:blue;
        }
        #footer{
          width:100%;
          height:100px;
          background-color:red;
        }
  </style>
 </head>
 <body>
  <!--先编写好网页布局-->
  <div id="top">
     <p id="time"></p><a onclick=" historys()">返回</a> 
     
  </div>
  <div id="container"></div>
  <div id="footer"></div>
  <script type="text/javascript"> 
    var num=6;
    function showTime(){
      num=num-1;
      if(num>0){
     document.getElementById("time").innerHTML=num;
      }
       else{
          location.assign("http://www.imooc.com");
          var clearint=clearInterval(int);
      }
    }
   var int=setInterval("showTime()",1000);  

   //通过window的location和history对象来控制网页的跳转。
   function historys(){
    window.history.go(-1);
}
   
 </script> 
</body>
</html>

我写了这个,主要是这个网址的编辑器不是很好,你可以试一下W3school的编辑器,或者直接写在html文档里。

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

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468060    人
  • 解答问题       21891    个

本课程从如何插入JS代码开始,带您进入网页动态交互世界

进入课程

setInerval停止

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