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.
我需要帮助。我有一个滚动条使用下一个后退按钮滚动“可滚动”内的 div 标签,但我需要在页面加载或重新加载时自动跳转到 div 标签,即从 5 个 div 标签开始。这可能吗?我的代码/示例链接如下
$(function() { $("div.scrollable").scrollable(); });
$(function() { $("div.scrollable").scrollable(); var api = $("div.scrollable").data("scrollable"); api.move(4); // moves the scroller 4 places // or: api.seekTo(5); goes directly to index set. });
没有测试过,但是在网站上你可以查找 api 函数。这应该有效。:)