js浏览器对象
2021-06-07 07:02
标签:返回 宽高 屏幕宽度 sign index path 单位 comm protocol 可以用 要加载一个新页面,可以调用 js浏览器对象 标签:返回 宽高 屏幕宽度 sign index path 单位 comm protocol 原文地址:http://www.cnblogs.com/binxyz/p/7327852.htmlwindow
window
对象不但充当全局作用域,而且表示浏览器窗口。window
对象有innerWidth
和innerHeight
属性,可以获取浏览器窗口的内部宽度和高度。内部宽高是指除去菜单栏、工具栏、边框等占位元素后,用于显示网页的净宽高。screen
screen
对象表示屏幕的信息,常用的属性有:
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树的根节点。