BOM是js的重要組成部分,是brower object model的縮寫spa
open打開一個網址
open("http://www.baidu.com");只有一個參數,從新打開一個網址
open("http://www.baidu.com","_self");
open("http://www.baidu.com","_blank");兩個參數
win = open("http://www.baidu.com","_blank","width=300,height=400");三個參數
close關閉一個網址
btn2.onclick = function(){
win.close();
}
定時器
setTimeout() // 間隔多長時間執行一次,只執行一次
var a = setTimeout(function(){
alert("這是一個定時器");
},500); 時間500毫秒,不是太嚴格 ,有偏差
setInterval() // 間隔多長時間執行,是不間斷的執行
清空定時器:
clearTimeout: 清空定時器
clearInterval() 清空定時器