码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 定时器

时间:2018-12-26 00:25:57      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:charset   type   按钮   back   nbsp   src   time   ons   跳转   


<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script src="js/test.js" type="text/javascript" charset="utf-8"></script>
</head>
<body style="height: 1000px;">
<button>按钮</button>
<button onclick="func1()">跳转到红页面</button>

<button onclick="func2()">关闭窗体</button>
<script type="text/javascript">

  var time
  time = window.setInterval(function(){
      console.log("sunck is ")
  },2000)
  function func1(){
      window.clearInterval(time)
  }
  function func2(){
        time = window.setInterval(function(){
      console.log("sunck is ")},2000)
  }


</script>

</body>
</html>

 

JavaScript 定时器

标签:charset   type   按钮   back   nbsp   src   time   ons   跳转   

原文地址:https://www.cnblogs.com/jeco-li/p/10176995.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!