Javascript(5)

一、BOM对象

浏览器对象模型

1、window代表浏览器窗口

①弹窗 window.alert()
②内部高度 window.innerHeight
③内部宽度 window.innerWidth
④外部高度 window.outerHeight
⑤外部宽度 window.outerWidth

2、navigator封装了浏览器的信息

①应用名 navigator.appName
②浏览器版本 navigator.appVersion
③用户信息 navigator.userAgent
④系统版本 navigator.platform
但不建议使用,不安全。

3、screen代表屏幕尺寸

①屏幕宽度 screen.width
②屏幕高度 screen.height

4、location代表当前页面信息的URL信息

以百度为例
①主机 host "www.baidu.com"
②当前指向位置 href 用来跳转网页 "https://www.baidu.com/"
③协议 protocol "https"
④重新加载 reload 用于刷新网页 f reload()
⑤设置新地址 location.assign()

你可能感兴趣的:(Javascript(5))