JS之BOM

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS之BOM相关的知识,希望对你有一定的参考价值。

1.window

技术分享
 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Bom对象;因为需要跟浏览器对话。</title>
 6 
 7     <script type="text/javascript">
 8             /*bom对象最重要的就是与浏览器对话*/
 9                 //window对象
10                     //----alert----confirm--prompt-------
11             window.alert("你好");
12             var res=window.confirm("内容保存?");
13             var res=window.prompt("写入框");
14             alert(res);
15                     //setInterval-----cleanInterval
16             function begin(){
17                 var Stime=new Date().toLocaleString();
18                 var begin=document.getElementById("text");
19                 begin.value=Stime
20             }
21             var ID;
22             function setI(){
23                 if(ID==undefined){
24                 ID=window.setInterval(begin,1000);
25                 }
26             }
27             function end(){
28                 window.clearInterval(ID);
29                 ID=undefined;
30             }
31     </script>
32 </head>
33 <body>
34             <input type="text" style="width:200" id="text"/>
35             <input type="button" value="begin" id="begin" onclick="setI()" />
36             <input type="button" value="end" id="end" onclick="end()" />
37 </body>
38 </html>
View Code

 

以上是关于JS之BOM的主要内容,如果未能解决你的问题,请参考以下文章

JS之BOM

JS学习笔记8之 BOM-浏览器对象模型

JS之BOM

js之BOM和DOM

JS 之 Bom/Dom/节点

JS之BOM