GitHub
https://github.com/immissile/jquery.nicescroll
<!--jquery.nicescroll-->
<script src="js/jquery.nicescroll/jquery.nicescroll.js" type="text/javascript"></script>
var nicesx = $("div[id^='drop-down-ul-']").niceScroll({
touchbehavior:false,
cursorcolor:"#3FA7CB",
cursoropacitymax:1.6,
cursorwidth:8,
horizrailenabled:false,
cursorborderradius:0,
autohidemode:false
});
//防止拉動事不觸發document的click,也就是不冒泡
$("div[id^='ascrail']").bind("click",function(e){
var ev=e||event;
ev.stopPropagation();
return false;
});
代碼轉載自:http://javaeedevelop.iteye.com/blog/1678491
轉載于:https://www.cnblogs.com/linyongqin/articles/3951846.html