天天看点

js之浏览器对象|28

JavaScript可以获取浏览器提供的很多对象,并进行操作。

window

​window​

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

​window​

​对象有​

​innerWidth​

​和​

​innerHeight​

​属性,可以获取浏览器窗口的内部宽度和高度。内部宽高是指除去菜单栏、工具栏、边框等占位元素后,用于显示网页的净宽高。

兼容性:IE<=8不支持。

'use strict';      

​ Run

对应的,还有一个​

​outerWidth​

​和​

​outerHeight​

​属性,可以获取浏览器窗口的整个宽高。

navigator

​navigator​

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

  • navigator.appName:浏览器名称;
  • navigator.appVersion:浏览器版本;
  • navigator.language:浏览器设置的语言;
  • navigator.platform:操作系统类型;
  • navigator.userAgent:浏览器设定的​

    ​User-Agent​

    ​字符串。
'use strict';      

​ Run

请注意,​

​navigator​

​的信息可以很容易地被用户修改,所以JavaScript读取的值不一定是正确的。很多初学者为了针对不同浏览器编写不同的代码,喜欢用​

​if​

​判断浏览器版本,例如:

var width;
if (getIEVersion(navigator.userAgent) < 9) {
    width = document.body.clientWidth;
} else {
    width = window.innerWidth;
}      

但这样既可能判断不准确,也很难维护代码。正确的方法是充分利用JavaScript对不存在属性返回​

​undefined​

​的特性,直接用短路运算符​

​||​

​计算:

var width = window.innerWidth || document.body.clientWidth;      

screen

​screen​

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

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

​ Run

location

​location​

​对象表示当前页面的URL信息。例如,一个完整的URL:

http://www.example.com:8080/path/index.html?a=1&b=2#TOP      

可以用​

​location.href​

​获取。要获得URL各个部分的值,可以这么写:

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.assign()​

​。如果要重新加载当前页面,调用​

​location.reload()​

​方法非常方便。

'use strict';      

​ Run

document

​document​

​对象表示当前页面。由于HTML在浏览器中以DOM形式表示为树形结构,​

​document​

​对象就是整个DOM树的根节点。

​document​

​的​

​title​

​属性是从HTML文档中的​

​<title>xxx</title>​

​读取的,但是可以动态改变:

'use strict';      

​ Run

请观察浏览器窗口标题的变化。

要查找DOM树的某个节点,需要从​

​document​

​对象开始查找。最常用的查找是根据ID和Tag Name。

<dl id="drink-menu" style="border:solid 1px #ccc;padding:6px;">
    <dt>摩卡</dt>
    <dd>热摩卡咖啡</dd>
    <dt>酸奶</dt>
    <dd>北京老酸奶</dd>
    <dt>果汁</dt>
    <dd>鲜榨苹果汁</dd>
</dl>      
'use strict';