var tab = $('#mainTabs').tabs('getSelected'); // get selected panel
$('#mainTabs').tabs('update', {
tab: tab,
options: {
title: 'New Title',
href: 'get_content.do' // the new content URL
}
});
这段代码是在jquery easyui当前tabs中加载你想要的url
var tab = $('#mainTabs').tabs('getSelected'); // get selected panel
$('#mainTabs').tabs('update', {
tab: tab,
options: {
title: 'New Title',
href: 'get_content.do' // the new content URL
}
});
这段代码是在jquery easyui当前tabs中加载你想要的url