js获取网页的各种高度
2020-12-13 03:45
标签:style blog class code c color 网页可见区域宽: document.body.clientWidth 因为一直记不住这些所以转过来常看看就应该能记住了 以上属于转载,出处http://www.cnblogs.com/wuchao/ 应该是这个出处吧 有了这个我就可以来动态加载图片代码了 js获取网页的各种高度,搜素材,soscw.com js获取网页的各种高度 标签:style blog class code c color 原文地址:http://www.cnblogs.com/miniyk/p/3728780.html
网页可见区域高:
document.body.clientHeight
网页可见区域宽: document.body.offsetWidth
(包括边线的宽)
网页可见区域高: document.body.offsetHeight
(包括边线的高)
网页正文全文宽:
document.body.scrollWidth
网页正文全文高:
document.body.scrollHeight
网页被卷去的高:
document.body.scrollTop
网页被卷去的左:
document.body.scrollLeft
网页正文部分上:
window.screenTop
网页正文部分左:
window.screenLeft
屏幕分辨率的高:
window.screen.height
屏幕分辨率的宽:
window.screen.width
屏幕可用工作区高度:
window.screen.availHeight
屏幕可用工作区宽度:
window.screen.availWidth1 document.onmousewheel = function () {
2 var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
3 var hght = document.body.scrollHeight;
4 if (scrollTop + document.documentElement.clientHeight >= hght) {
5 /*在这里写加载图片的代码*/
6 }