js获取浏览器中相关容器的高度
document.body.clientWidth || document.documentElement.clientWidth
document.body.clientHeight || document.documentElement.clientWidth
document.body.offsetWidth
document.body.offsetHeight
document.body.scrollWidth
document.body.scrollHeight
document.body.scrollTop || document.documentElement.scrollTop
document.body.scrollLeft || document.documentElement.scrollLeft
window.screenTop
window.screenLeft
window.screen.height
window.screen.width
window.screen.availHeight
window.screen.availWidth