在 mCustomScrollbar 中,我想默认将滚动条放在水平位置的右端,所以我尝试了这个:
$('.content').mCustomScrollbar("scrollTo",'last', {horizontalScroll: true});
这没有用。以下工作,但不会将滚动条移动到正确的位置:
$('.content').mCustomScrollbar({horizontalScroll: true});
我应该怎么做才能使水平滚动默认出现在右侧?
在 mCustomScrollbar 中,我想默认将滚动条放在水平位置的右端,所以我尝试了这个:
$('.content').mCustomScrollbar("scrollTo",'last', {horizontalScroll: true});
这没有用。以下工作,但不会将滚动条移动到正确的位置:
$('.content').mCustomScrollbar({horizontalScroll: true});
我应该怎么做才能使水平滚动默认出现在右侧?
试试下面
(function($){
$(window).load(function(){
$(".content").mCustomScrollbar({advanced:{ // Advanced options
autoScrollOnFocus: false,
updateOnContentResize: true, // Scrollbar will be updated on content resize
updateOnBrowserResize: true // Scrollbar will be updated on browser resize
}});
});
})(jQuery);
检查此链接以下载http://www.4shared.com/document/KxCFmv7E/jquerymCustomScrollbarconcatmi.html