BOM常用对象
Posted guan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BOM常用对象相关的知识,希望对你有一定的参考价值。
BOM的常用对象: window 、 navigator、 history、 location、 document 、 screen、 event
navigator:保存浏览器配置信息的对象
cookieEnabled:判断是否启用cookie
userAgent:判断浏览器的名称和版本号
plugins:保存浏览器中所有插件信息的集合
screen:保存显示屏幕的对象信息
history:保存当前的历史记录栈
history.go(-1):后退
history.go(1):前进一次
history.go(0):刷新
<a href="javascript:history.go(1);">前进一次</a>
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:被更新的页面,会从新获取
未被修改的页面在缓存中取
Window 对象表示浏览器中打开的窗口
window.applicationCache对象实现 html5对应WEB离线功能
以上是关于BOM常用对象的主要内容,如果未能解决你的问题,请参考以下文章