我尝试在我的选择上使用 cusel.js(样式化选择)库,但它不起作用 - 选择正在改变,但是当我尝试在 JavaScript 控制台中使用用于由 Cusel 滚动的 jscrollpane 滚动选择选项时我看到我不知道的错误:
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);
});
有什么想法吗?