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.
是否有包装 window.onscroll 的 Dojo 方法?
我希望能够捕获页面滚动。我可以捕获鼠标滚轮,但似乎找不到任何关于捕获实际页面滚动的参考。我尝试了很多变化,但事件似乎根本没有发生。
有任何想法吗?
dojo.connect(window, 'onscroll', this, function(event) { var scrollTop = dojo._docScroll().y; //code to handle scroll });
无论文档是通过鼠标滚轮、滚动条还是向上/向下键滚动,这都适用于我,这几乎涵盖了所有滚动场景。