ITPUB老博客搬遷至此
當(dāng)瀏覽器新tag一打開,就建立?BOM:
Bom對(duì)象模型:

?我們開發(fā)中必須知道的幾個(gè)BOM對(duì)象的屬性:? ??
??window常用的屬性:window.alert(); ?prompt(); ??setTimeOut(), ?setInterval(), ?clearTimeOut(); ?clearInterval()……..
window.navigator瀏覽器信息對(duì)象,存儲(chǔ)著瀏覽器的各種信息,常用的屬性:appCodeName,online?(判斷瀏覽器是否處于脫機(jī)狀態(tài),即有沒有聯(lián)網(wǎng)),cookieEnabled?(用于判斷是否支持/禁止cookie)…….
window.location? 地址欄對(duì)象,常用屬性:protocol , host , port , pathname , search ,href ……
window.screen?? 屏幕信息對(duì)象 , 常用屬性:availHeight (除了菜單欄外的可用高度),availWidth(除了菜單欄外的可用寬度),colorDepth (顏色質(zhì)量:32位/16位),height(實(shí)際高度),width (實(shí)際寬度)
window.document? 文檔對(duì)象 , 常用屬性:linkColor(超鏈接的顏色),alinkColor(作用中的超鏈接的顏色),vlinkColor(作用過(guò)后的超鏈接的顏色), getElementsByName(“l(fā)uo_div”) 返回一個(gè)集合,getElementsByTagName(“div”)返回一個(gè)集合,getElementsByClassName(“樣式名字”)返回一個(gè)集合