码迷,mamicode.com
首页 > 其他好文 > 详细

BOM常用对象

时间:2017-07-06 16:58:32      阅读:405      评论:0      收藏:0      [点我收藏+]

标签:led   style   enable   url   ica   enabled   str   缓存   cat   

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

标签:led   style   enable   url   ica   enabled   str   缓存   cat   

原文地址:http://www.cnblogs.com/guanguan-/p/7126745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!