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.
我尝试使用自己的方式替换滚动,但是有什么方法可以测试哪个元素(HTML 或 BODY)能够使用 javascript(jQuery)在浏览器上滚动?
我尝试在 DOM 检查器上查看两者,它们都具有 scrollTop 属性,但只有一个能够更改。
如果我说对了,您想检查 body 或 html 是否滚动。这不会为你做这项工作:
$(window) .on('scroll', 'html', function() { htmlScroll(); }) .on('scroll', 'body', function() { bodyScroll(); })