以下是我获取当前选定选项卡索引的 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);