Dean Front-end Dev Engineer

JS 浏览器对象

2018-02-19

Window

window对象不但充当全局作用域,而且也表示浏览器窗口。

//获取浏览器窗口的内部宽度和高度。内部宽高是指除去菜单栏、工具栏、边框等占位元素后,用于显示网页的净宽高。
window.innerWith
window.innerHeight
//获取浏览器窗口整个窗口的宽高。
window.outerWith
window.outerHeight

navigator对象表示浏览器的信息,最常用的属性包括:

navigator.appName//浏览器名称;
navigator.appVersion//浏览器版本;
navigator.language//浏览器设置的语言;
navigator.platform//操作系统类型;
navigator.userAgent//浏览器设定的User-Agent字符串。

注意:navigator的信息可以很容易地被用户修改,所以JavaScript读取的值不一定是正确的。

screen

screen对象表示屏幕的信息,常用的属性有:

screen.width//屏幕宽度,以像素为单位;
screen.height//屏幕高度,以像素为单位;
screen.colorDepth//返回颜色位数,如8、16、24。

location

location对象表示当前页面的URL信息。

location.href//当前页面完整url  http://www.example.com:8080/path/index.html?a=1&b=2#TOP
location.protocol; // 'http'
location.host; // 'www.example.com'
location.port; // '8080'
location.pathname; // '/path/index.html'
location.search; // '?a=1&b=2'
location.hash; // 'TOP'

如果要重新加载当前页面,调用location.reload()方法非常方便。

要加载一个新页面,可以调用location.assign()

if (confirm('重新加载当前页' + location.href + '?')) {
    location.reload();
} else {
    location.assign('/'); // 设置一个新的URL地址,例如根页面
}

document

document对象表示当前页面。由于HTML在浏览器中以DOM形式表示为树形结构,document对象就是整个DOM树的根节点。

history

history对象保存了浏览器的历史记录,JavaScript可以调用history对象的back()forward (),相当于用户点击了浏览器的“后退”或“前进”按钮。由于现在的页面使用大量的ajax,所以要慎用ajax。


Comments

Content