码迷,mamicode.com
首页 > 其他好文 > 详细

今天的第三个坑

时间:2016-06-14 23:47:09      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

  http://boleyn.iteye.com/blog/1144015

 

 

 

 

<html>
    <head>
        <title> timer_test </title>
        <meta charset="utf-8">
        <script type="text/javascript">

            function timeout()
            {

            function conf1()
              {
                if (confirm("要取消吗")==true)
                {
                  clearInterval(t);
                }
                else
                {
                  console.log("have not cancel!");
                }
              }
            // var t=setInterval("conf1()",2000);  // 出错咯
            var t=setInterval(conf1,2000);
            }
        </script>
    </head>
    <body>
      <input type="button" value="click me " onclick="timeout()">
    </body>
</html>

 

今天的第三个坑

标签:

原文地址:http://www.cnblogs.com/Tachi/p/5585849.html

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