JavaScript之坑了我--BOM模型速知

eBusinessMan發表於2015-11-04

   當瀏覽器新tag一開啟,就建立 BOM:
 Bom物件模型:


      我們開發中必須知道的幾個BOM物件的屬性:                            
      window常用的屬性:window.alert();  prompt();   setTimeOut(),  setInterval(),  clearTimeOut();  clearInterval()……..

window.navigator瀏覽器資訊物件,儲存著瀏覽器的各種資訊,常用的屬性:appCodeName,online (判斷瀏覽器是否處於離線狀態,即有沒有聯網),cookieEnabled (用於判斷是否支援/禁止cookie)…….

window.location  位址列物件,常用屬性:protocol , host , port , pathname , search ,href ……

window.screen   螢幕資訊物件 , 常用屬性:availHeight (除了選單欄外的可用高度),availWidth(除了選單欄外的可用寬度),colorDepth (顏色質量:32位/16位),height(實際高度),width (實際寬度)

window.document  文件物件 , 常用屬性:linkColor(超連結的顏色),alinkColor(作用中的超連結的顏色),vlinkColor(作用過後的超連結的顏色), getElementsByName(“luo_div”) 返回一個集合,getElementsByTagName(“div”)返回一個集合,getElementsByClassName(“樣式名字”)返回一個集合

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29900383/viewspace-1822696/,如需轉載,請註明出處,否則將追究法律責任。

相關文章