JavaScript -- Window-Interval

时间:2023-03-09 23:01:48
JavaScript -- Window-Interval

-----031-Window-Interval.html-----

 <!DOCTYPE html>
 <html>
 <head>
     <meta http-equiv="content-type" content="text/html; charset=utf-8">
     <title>标题</title>
 </head>
 <body>
 <form name="frm">
     <input name="txt" border="0" size="0"/>
     <input type="button" value="停止" onclick="clearInterval(itv)"/>
     <input type="button" value="关闭" onclick="window.close()"/>
 </form>
 <script type="text/javascript">
     function setSize()
     {
         document.frm.txt.size++;
     }
     itv = setInterval(setSize, 200);
 </script>
 </body>
 </html>

JavaScript -- Window-Interval