Jquery UI选项卡。始终显示以前选择的选项卡索引

时间:2013-10-28 09:34:49

标签: javascript jquery

以下是我获取当前所选标签索引的jquery代码。但是,所有这些都返回先前的选项卡值。我需要当前选中的标签索引。请帮忙

var selected = $("#enrichmentViewTabs").tabs("option", "selected");
                var sel2 = $("#enrichmentViewTabs").tabs().data("selected.tabs");
                var sel3 = $("#enrichmentViewTabs").tabs('option', 'active');
                var curTab = $('.ui-tabs-panel:not(.ui-tabs-hide)'),curTabID = curTab.prop("id");
                var sel4 = curTab.index();

                $("#enrichmentViewTabs").bind("tabsactivate", function(event, ui) {
                        selected = ui.newTab.index();
                });
                alert(selected);

0 个答案:

没有答案