扩展Jquery ui tab事件

时间:2014-01-31 12:45:46

标签: jquery jquery-ui-tabs

美好的一天。

我想在页面的所有标签中应用此类事件,我该怎么办?

    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"]
                });
            }
        }
    } 

1 个答案:

答案 0 :(得分:1)

可能让事件冒出来并在那里捕捉它。

$(document).on('tabsactivate',function(event,ui){
 // your stuff here
});