jQuery自定义内容滚动条:页面加载时自动滚动

时间:2013-01-15 17:30:42

标签: jquery jquery-plugins

我正在使用jQuery custom content scroller插件,并希望在页面加载时自动启动滚动。

2 个答案:

答案 0 :(得分:0)

也许你可以使用this,不仅仅是这个:

$(document).ready(function(){
  $('html, body').scrollTop(25);
});

答案 1 :(得分:0)

我不确定我是否理解,但你可以使用类似的东西:

$(document).ready(function() { // or $(window).load(function() {
 $(selector).mCustomScrollbar();
 // And if you meant to change the scroll position:
 $(selector).mCustomScrollbar("scrollTo",Integer);
})