定时器

来源:互联网 发布:平面广告设计软件有哪些 编辑:程序博客网 时间:2024/05/21 23:34
//setInterval//clearInterval<!DOCTYPE html><html>    <head>        <meta charset="utf-8">        <title></title>    </head>    <script type="text/javascript">        window.onload = function (){            var bt1 = document.getElementById("btn1");            var bt2 = document.getElementById("btn2");            var times;            //            bt1.onclick = function(){//                times = setInterval(function(){//                    alert('a');//                },1000)//            };            //            bt2.onclick = function(){//                clearInterval(times);//            }         bt1.onclick = function(){             times = setTimeout(function(){                 alert('a');             },1000);         }                  bt2.onclick = function(){             clearTimeout(times);         };        };    </script>    <body>        <input id = "btn1" type="button" value="开启" /><br>        <input id = "btn2" type="button" value="关闭" /><br>    </body></html>