其他分享
首页 > 其他分享> > BOM操作 - 1

BOM操作 - 1

作者:互联网

1、window对象

//火狐写法 window.screenX/screenY   窗口相对于屏幕左、上的位置
console.log(window.screenLeft);
//IE8一下写法  document.documentElement.clientHeight/clientWidth
//浏览器窗口的内部宽度、高度
console.log(window.innerHeight);

2、Navigator对象

名称 概念
appCodeName 返回浏览器的代码名
appName 返回浏览器的名称
appVersion 返回浏览器的平台和版本信息
cookieEnabled 返回指明浏览器中是否启用cookie 的布尔值
platform 返回运行浏览器的操作系统平台
userAgent 返回由客户机发送服务器的
user-agent 头部的值
    //获取 navigator对象
    console.log(window.navigator);

    //window.navigator.userAgent
    //储存着浏览器所有的基础信息
    //数据类型是字符串类型

    if (navigator.userAgent.indexOf("Firefox") != -1) {
        alert("这是火狐浏览器");
    }
    if (navigator.userAgent.indexOf("Chrome") != -1) {
        alert("这是谷歌浏览器");
    } else if (navigator.userAgent.indexOf("Safan") != -1) {
        alert("这是苹果浏览器");
    }

3、location对象

location.png

属性 含义
hash 设置或返回从井号 (#) 开始的 URL(锚)
host 设置或返回主机名和当前 URL 的端口号
hostname 设置或返回当前 URL 的主机名
href 设置或返回完整的 URL
pathname 设置或返回当前 URL 的路径部分
port 设置或返回当前 URL 的端口号
protocol 设置或返回当前 URL 的协议
search 设置或返回从问号 (?) 开始的 URL(查询部分)
方法 含义
assign() 加载新的文档
reload() 重新加载当前文档
replace() 用新的文档替换当前文档

标签:返回,浏览器,URL,window,BOM,设置,操作,navigator
来源: https://www.cnblogs.com/liujianjun/p/16387934.html