我正在尝试移植遗留项目,它使用了
Jquery-Layout.当我尝试启动应用程序时,它就行了…
sC.selector = $N.selector.split(".slice")[0];
和barfs ……
Cannot read property ‘split’ of undefined
现在我对这个库知之甚少,但如果我在失败点断点,我看到$N instanceof jQuery返回true,我在集合中看到一个DOM元素.它有可能没有选择器吗?
最佳答案 对于jquery.layout 1.4.4,只需注释第1831行:sC.selector = $N.selector.split(“.slice”)[0];并且所有工作正常(在jQuery v3.3.1上测试)