一、BOM對(duì)象
瀏覽器對(duì)象模型
1、window代表瀏覽器窗口
①彈窗 window.alert()
②內(nèi)部高度 window.innerHeight
③內(nèi)部寬度 window.innerWidth
④外部高度 window.outerHeight
⑤外部寬度 window.outerWidth
2、navigator封裝了瀏覽器的信息
①應(yīng)用名 navigator.appName
②瀏覽器版本 navigator.appVersion
③用戶信息 navigator.userAgent
④系統(tǒng)版本 navigator.platform
但不建議使用,不安全。
3、screen代表屏幕尺寸
①屏幕寬度 screen.width
②屏幕高度 screen.height
4、location代表當(dāng)前頁面信息的URL信息
以百度為例
①主機(jī) host "www.baidu.com"
②當(dāng)前指向位置 href 用來跳轉(zhuǎn)網(wǎng)頁 "https://www.baidu.com/"
③協(xié)議 protocol "https"
④重新加載 reload 用于刷新網(wǎng)頁 f reload()
⑤設(shè)置新地址 location.assign()