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.
如何使用 jquery mobile 的静默滚动来强制 div 滚动到底部?我知道如何在 jquery 中使用 ScrollTop 来做到这一点,但这似乎不适用于 jquery mobile。
谢谢
使用静默滚动方法,您可以滚动页面,而不是元素。
//scroll to Y 100px $.mobile.silentScroll(100);
因此,如果您想相对于 DIV 滚动页面,您应该获取 div 的位置,例如:
$.mobile.silentScroll($('DIV').offset().top);