jQuery easyui刷新当前tabs的方法

更新特定的选项卡面板 可使用update方法,param参数包含2个属性:

tab: 将被更新的选项卡。

options: 选项卡相关配置项。

Example:

//当前tab
var current_tab = $(‘#frame_tabs‘).tabs(‘getSelected‘);
$(‘#frame_tabs‘).tabs(‘update‘,{
tab:current_tab,
options : {
content : ‘<iframe scrolling="auto" frameborder="0" src="‘+URL+‘" style="width:100%;height:100%;"></iframe>‘,
//或者 href : ‘‘;
}
});

相关推荐