首页 > 代码库 > BOM常用对象

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常用对象