我需要帮助。我有一个滚动条使用下一个后退按钮在'scrollable'内滚动div标签但我需要在页面加载或重新加载时自动跳转到div标签,即从5 div标签开始。这可能吗?我在下面的代码/示例链接
$(function(){ $( “div.scrollable”)滚动()。 });
答案 0 :(得分:1)
$(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功能。这应该工作。 :)