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 : ''; 
     } 
});



原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14522.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论