以下是我获取当前所选标签索引的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);