问题描述
- Uncaught TypeError: Cannot read property 'options' of undefined
-
使用easyui 循环添加tabs
for(var i=0;i<9;i++){
$("#tt").tabs('add',{title:'aaa',
content:"bbbb",closable:true,
});
}
只进行了一次添加,然后终止。经浏览器调试
在jquery.easyui.min.js 3648行中报了一个错
function _2b7(_2b8,_2b9){
var opts=$.data(_2b8,"tabs").options;
Uncaught TypeError: Cannot read property 'options' of undefined
var tabs=$.data(_2b8,"tabs").tabs;
if(_2b9.selected==undefined){
_2b9.selected=true;
}
Uncaught TypeError: Cannot read property 'options' of undefined
解决方案
看看生产的代码 这个$("#tt").tabs重复了
时间: 2024-11-08 18:22:05