11-js宽高

window和document的区别:

window指浏览器窗口,可省咯,document对象是window对象的一部分。

window.location 和document.location 的区别:

window对象的属性引用的是location对象,表示该窗口中当前显示文档的URL

document的对象的location属性也引用了location

window.location===document.location//true

windows宽高innerHeight outerHeight

image
image
image
image
image

兼容问题推荐使用 获取浏览器窗口可视区域大小

1
2
document.body.clientWidth || document.documentElement.clientWidth;
document.body.clientHeight || document.documentElement.clientHeight;

image

image
image