Web前端之路让前端飞BOM

浏览器对象模型BOM

2018-06-30  本文已影响12人  fenerchen

总览

window对象

这是BOM的核心

1.全局作用域

在全局作用域中声明的变量、函数都是window的属性和方法

var age = 29;
function sayAge(){
alert(this.age);
}
alert(window.age); //29
sayAge(); //29
window.sayAge(); //29

全局变量不能用delete删除,但是直接在window上定义的属性可以

var age = 29;
window.color = "red";
//在IE < 9 时抛出错误,在其他所有浏览器中都返回false
console.log(delete age);
//在IE < 9 时抛出错误,在其他所有浏览器中都返回true
delete window.color; //returns true
console.log(age); //29
console.log(window.color); //undefined

2.窗口
window.frames中保存着框架的集合

var leftPos = (typeof window.screenLeft == "number") ?
window.screenLeft : window.screenX;
var topPos = (typeof window.screenTop == "number") ?
window.screenTop : window.screenY;
var pageWidth = window.innerWidth,
pageHeight = window.innerHeight;
if (typeof pageWidth != "number"){
if (document.compatMode == "CSS1Compat"){
pageWidth = document.documentElement.clientWidth;
pageHeight = document.documentElement.clientHeight;
} else {
pageWidth = document.body.clientWidth;
pageHeight = document.body.clientHeight;
}
}
var wroxWin=window.open("http://www.wrox.com/","_blank",
"height=400,width=400,top=10,left=10,resizable=yes");

wroxWin.opener = null;禁止老窗口和新窗口通信

2.location对象

提供与当前窗口中加载文档有关的信息,还提供了一些导航功能。location对象既是window的属性也是document对象的属性。window.location和document.location指向同一个对象。location姑且认为是URL。

function getQueryStringArgs(){
//取得查询字符串并去掉开头的问号
var qs = (location.search.length > 0 ? location.search.substring(1) : ""),
//保存数据的对象
args = {},
//取得每一项
items = qs.length ? qs.split("&") : [],
item = null,
name = null,
value = null,
//在for 循环中使用
i = 0,
len = items.length;
//逐个将每一项添加到args 对象中
for (i=0; i < len; i++){
item = items[i].split("=");
name = decodeURIComponent(item[0]);
value = decodeURIComponent(item[1]);
if (name.length) {
args[name] = value;
}
}
return args;
}
location.assign(''http://www.baidu.com")
//下面两句相当于隐式调用assign()方法。
window.location=''http://www.baidu.com"
location.href=''http://www.baidu.com"
//不能后退到前一个页面
location.replace(''http://www.baidu.com")

navigator对象

提供浏览器详细信息

//非IE
  function hasPlugin(name) {
            name = name.toLowerCase();
            for (var i = 0; i < navigator.plugins.length; i++) {
                if (navigator.plugins[i].name.toLowerCase().indexOf(name) > -1) {
                    return true;
                }
            }
            return false;
        }

在IE 中检测插件的唯一方式就是使用专有的ActiveXObject 类型,并尝试创建一个特定插件的实例。IE 是以COM对象的方式实现插件的,而COM对象使用唯一标识符来标识。因此,要想检查特定的插件,就必须知道其COM标识符。

function hasIEPlugin(name){
  try{
    new ActiveXObject(name)
    return true
  }catch(ex){
    return false
  }
}

screen对象

提供用户显示器分辨率详细信息

history对象

保存在用户历史记录信息。

//后退一页
history.go(-1);
//前进一页
history.go(1);
//前进两页
history.go(2);
//跳转到最近的wrox.com 页面
history.go("wrox.com");
//跳转到最近的nczonline.net 页面
history.go("nczonline.net");
//后退一页
history.back();
//前进一页
history.forward();

history 对象还有一个length 属性,保存着历史记录的数量。

if (history.length == 0){
//这应该是用户打开窗口后的第一个页面
}

参考资料:JavaScript高级程序设计(第3版)

上一篇 下一篇

猜你喜欢

热点阅读