我需要在jQuery中获取窗口的高度和滚动偏移量,但我没有在jQuery文档或Google中找到这个运气.
我90%肯定有一种方法来访问一个元素的高度和scrollTop(可能包括窗口),但我找不到具体的参考.
来自jQuery Docs:
const height = $(window).height(); const scrollTop = $(window).scrollTop();
http://api.jquery.com/scrollTop/
http://api.jquery.com/height/
来自http://api.jquery.com/height/(注意:窗口和文档对象的使用之间的区别)
$(window).height(); // returns height of browser viewport $(document).height(); // returns height of HTML document
来自http://api.jquery.com/scrollTop/
$(window).scrollTop() // return the number of pixels scrolled vertically
$(window).height() $(window).width()
还有一个jquery插件来确定元素位置和偏移量
http://plugins.jquery.com/project/dimensions
scroling offset =元素的offsetHeight属性