获取浏览器可视区域尺寸

//获取可视区域尺寸
document.documentElement.scrollHeight
document.documentElement.scrollWidth
//获取浏览器可操作区域尺寸
window.screen.availHeight
window.screen.availWidth
//获取分辨率
window.screen.width
window.screen.height

  

原文地址:https://www.cnblogs.com/shikelong/p/4179443.html