0

I'm using jQuery custom content scroller plugin and would like the scroll initiated automatically when the page loads.

4

2 回答 2

0

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

$(document).ready(function() { // or $(window).load(function() {
 $(selector).mCustomScrollbar();
 // And if you meant to change the scroll position:
 $(selector).mCustomScrollbar("scrollTo",Integer);
})
于 2013-01-15T17:55:27.500 回答
0

也许你可以用这个,不只是这个:

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

?

于 2013-01-15T17:42:26.040 回答