以下は、現在選択されているタブのインデックスを取得するための 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);