美好的一天。
我想在页面的所有标签中应用此类事件,我该怎么办?
activate: function (event, ui) {
var $t = ui.newPanel.find('table');
// make sure there is a table in the tab
if ($t.length) {
if ($t[0].config) {
// update zebra widget
$t.trigger('applyWidgets');
} else {
// initialize tablesorter
$t.tablesorter({
theme: 'black',
widgets: ["zebra"]
});
}
}
}
答案 0 :(得分:1)
可能让事件冒出来并在那里捕捉它。
$(document).on('tabsactivate',function(event,ui){
// your stuff here
});