easyui中Tab的tools按钮刷新当前tab
点击刷新按钮,刷新当前Tab选项卡。
$('#index_tabs').tabs({ fit : true, border : false, tools : [ { iconCls : 'icon_refresh', handler : function() { // 刷新当前的tab $('.panel:visible > .panel-body > iframe').get(0).contentDocument.location.reload(true); } } ] });