我尝试在我的选择中使用cusel.js(样式选择)库,但它不起作用 - 选择正在改变,但是当我尝试使用jscrollpane滚动选择选项时,用于由Cusel滚动, JavaScript控制台我看不到我的错误:
Uncaught TypeError: Cannot use 'in' operator to search for 'using'
in #<error> (file jquery.js, line 9217).
我的图书馆版本:
Jquery v1.7.2
cusel version 2.5
jquery.jscrollpane.js - tried all versions of this library, still does not work.
jquery.mousewheel.js - tried all possible versions, still does not work.
我的代码是cuSel
:
jQuery(document).ready(function(){
var params = {
changedEl: ".lineForm select",
visRows:7,
}
cuSel(params);
});
有什么想法吗?