在mCustomScrollbar中,我想默认将滚动条放在水平位置的右端,所以我尝试了这个:
$('.content').mCustomScrollbar("scrollTo",'last', {horizontalScroll: true});
哪个不起作用。以下工作,但不会将滚动条移动到正确的位置:
$('.content').mCustomScrollbar({horizontalScroll: true});
默认情况下,如何使水平滚动显示在右边?
答案 0 :(得分:0)
尝试以下
(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