BOM 浏览器对象模型
Posted 纡ゾ少︶ㄣ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BOM 浏览器对象模型相关的知识,希望对你有一定的参考价值。
1 body>
2 <input type="button" value="go" onclick="star()" />
3 <input type="button" value="stop" onclick="stop()" />
4 </body>
5
6 <script>
7 window.setTimeout("alert(‘123‘)",3000); 延迟多少豪秒发生发生了就执行完了 双引号内套单引号或者单引号内套双引号单双引号不能同时用 时间为毫秒1000毫秒等于1秒
8
9 var x=[];
10 function star() {
11 x.push(window.setInterval("alert(456)", 1000)); 隔一段时间发生一次
12
13 }
14 function stop() {
15 for (var i = 0; i < x.length; i++) {
16 window.clearInterval(x[i]); 清除事件
17 }
18
19 }
20 </script>
以上是关于BOM 浏览器对象模型的主要内容,如果未能解决你的问题,请参考以下文章