JavaScript可以获取浏览器提供的很多对象,并进行操作。
window
window
对象表示浏览器窗口,而且充当全局作用域
window
对象有innerWidth
和innerHeight
属性,可以获取浏览器窗口的内部宽度和高度
window.innerWidth; // 窗口内部的宽度
window.innerHeight; // 窗口内部的高度
对应的,还有一个outerWidth
和outerHeight
属性,可以获取浏览器窗口的整个宽高。
window.innerWidth; // 窗口整体的宽度
window.innerHeight; // 窗口整体的高度
navigator
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
信息。例如,一个完整的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()
方法非常方便。
document
document
对象表示当前页面。由于HTML
在浏览器中以DOM
形式表示为树形结构,document
对象就是整个DOM
树的根节点。
document
的title
属性是从HTML
文档中的<title>xxx</title>
读取的,但是可以动态改变
document.title = "努力学习JavaScript!";
浏览器窗口标题将变化为 “努力学习JavaScript!”
用document
对象提供的getElementById()
和getElementsByTagName()
可以按ID
获得一个DOM
节点和按Tag
名称获得一组DOM
节点:
var menu = document.getElementById('menu');
var drink = document.getElementsByTagName('dt');
document
对象还有一个cookie
属性,可以获取当前页面的Cookie
。
history
history
对象保存了浏览器的历史记录,JavaScript 可以调用history
对象的back()
或forward ()
,相当于用户点击了浏览器的“后退”
或“前进”
按钮