BOM(The Browser Object Model)
Browser Object Model(BOM)在W3C並沒有標準規範。
以 HTML 觀點來看,Browser Object Model 所指的 window object包括了document object,
例如:
window.document.getElementById("header");
其window字詞可以被省略,相等於
document.getElementById("header");
BOM在操作的特性上也跟DOM蠻類似的,
故只列出一些比較主要的物件、方法作參考。
screen.width、screen.height
window.location
window.history
window.navigator
window.alert()
window.setTimeout()、window.setInterval()
document.cookie
參考資料: