当关闭tabs选项卡时,底部footer须要通过javascript又一次定位calcFooter(),怎样实现呢?选项卡上的关闭图标的方法是easyui自带的,calcFooter()写在onClose中不起作用。API中没有关闭后的方法,但有个关闭之前的方法onBeforeClose,在onBeforeClose方法中先实现onClose()方法,再calcFooter(),再return false,这样就达到要的效果
代码例如以下:
$('#tt').tabs({
onBeforeClose: function(title,index){
var target = this;
var opts = $(target).tabs('options');
opts.onBeforeClose = function(){}; // 同意如今关闭
$(target).tabs('close',index);
calcFooter();
return false; // 阻止关闭
}
});