BOM对象
BOM常用对象
1.BOM的常用对象:
window
navigator
history
location
dicument
screen
event
navigator:保存浏览器配置信息的对象
cookicEnablcd:判断是否启用cookic
userAgent:判断浏览器的名称和版本号
plugins:保存浏览器中所有插件信息的集合
screen:保存显示屏幕的对象信息
history:保存当前的历史记录栈
history.go(-1):后退
history.go(1):前进一次
history.go(0):刷新
location:
指代当前窗口正在访问额url地址对象
location.href:
保存了当前窗口正在访问的url地址
设置href属性为新url,会在当前窗口打开新的url
location.href="http://www.baidu.com"
location.assign(url):
在当前窗口打开新的url
location.assign("http://www.baidu.com");
location.reload(true/false);
true:无论是否更改,都获得最新的
false:被更新的页面,会从新获取
未被修改的页面在缓存中取
2.事件:浏览器自动触发的或用户手动触发的对象状态的改变