jquery.easyui.min.js:4917 Uncaught TypeError: Cannot read properties of undefined (reading 'options')
时间: 2023-11-08 11:56:14 浏览: 166
jQuery 出现Cannot read property ‘msie’ of undefined错误的解决方法
这个错误的原因是在使用组件之前没有进行初始化。正确的代码应该是:
```javascript
$(function () {
$("#accordion").accordion({ fit: true });
// 初始化tabs
$("#tabs").tabs({});
// 使用tabs
$('#tabs').tabs('add', { title: 'New Tab', content: 'Tab Body', closable: true });
});
```
阅读全文