如何添加滚动(niceScroll)的消失?
http://jsfiddle.net/xmocartx/CdwAP/4/
$(document).ready(
function() {
$(".chosen-results").niceScroll("",{cursorcolor:"#00F"});
}
);谢谢!
发布于 2014-02-18 21:23:55
Quick
只要单击文档,就可能在nicescroll上触发调整大小的事件。如下所示:
$(document).on("click.chosen", function( e ) {
$(".chosen-results").getNiceScroll().resize();
});小提琴:http://jsfiddle.net/Varinder/CdwAP/5/
https://stackoverflow.com/questions/21864692
复制相似问题