解决方法:添加红色行
mainPanel.tabs('add', {
title: node.text,
href: encodeURI(url),
cache: true,
method: 'GET',
closable: true,
tools: [{
iconCls: 'icon-mini-refresh',
handler: function() {
$('#main').tabs("select", $(this).parent().parent().first().first().text());
var tab = $('#main').tabs('getSelected'); // get selected panel
$('#main').tabs('update', {
tab: tab,
options: {
title: node.text,
href: encodeURI(url) // the new content URL
}
});
}
}]
});