Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何找到仅从浏览器可见区域上方不可见的网页的总高度。我到处都在梳理,找不到答案
编辑。
当有人向下滚动网页时,我试图在 px 中找到从当前屏幕上方看不到多少高度
如果您使用的是 jQuery,请尝试:
$(document).height() - $(window).height();
$(document).height()为您提供整个文档的高度。
$(document).height()
$(window).height()给你视口的高度。
$(window).height()
两者的差异应该产生文档的不可见部分。
$(document).scrollTop()应该为您提供从文档顶部到当前滚动位置的不可见部分。
$(document).scrollTop()
用 jQuery
$(document).scrollTop();