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="100%;height:100%;"></iframe>',
	  //或者 href : '';
     }
});
原文地址:https://www.cnblogs.com/huangf714/p/5898951.html