js各种高度的获取2019年7月18日js各种高度的获取 距离父元素顶部的距离12345// jsele.offsetTop;// jq$('ele').offset().top; 网页被卷起来的高度123456// jsdocument.documentElement.scrollTop || document.body.scrollTopwindow.pageYOffset// jq$(window).scrollTop() 元素的高度/宽度12345// jsdocument.querySelector('.eleClass').clientHeight;// jq$('.eleClass').height(); 窗口的高度12//jswindow.innerHeight || document.documentElement.clientHeight getBoundingClientRect12345//元素顶部距窗口顶部的距离element.getBoundingClientRect().top //元素底部部距窗口顶部的距离element.getBoundingClientRect().bottom