我在我的网页http://manos.malihu.gr/jquery-custom-content-scroller/
上安装了此自定义js滚动条我看到脚本将mcustomscrollbar类添加到正文中,所以我猜测它不是编码问题。
我使用简单的jquery标记将其加载到html上。
<script>
(function($){
$(window).load(function(){
$("body").mCustomScrollbar({
theme:"3d-thick",
scrollInertia: 150,
axis:"y",
scrollButtons:{
enable:true
}
});
$(".board").mCustomScrollbar({
axis:"y",
theme:"3d"
});
});
})(jQuery);
</script>
这是有问题的页面,不加载自定义滚动条。
http://lifeto.cafe24.com/xe/request
任何人都可以帮助我吗?
答案 0 :(得分:0)
我想你可能忘了添加
正如它标记的那样,<script src="/path/to/jquery.mCustomScrollbar.concat.min.js"></script>
位于您标题的底部。