8

I'm using a pretty simple implementation of the JQuery Tabs UI element. There is a form in the first tab that I am trying to have load the second tab with the onsubmit event. In ActionScript, I could use:

tabBar.selectedIndex = n;

Where selectedIndex is the tab number that has focus. Is there a way to get this done in Jquery?

4

2 に答える 2

14

更新jQuery UI 1.9以降

select メソッドは非推奨になり、アクティブなオプションを更新するだけになりました。

アクティブなオプションを変更するには、select メソッドへのすべての呼び出しを option メソッドへの呼び出しに置き換える必要があります。

// Activate the third panel
$( "#tabs" ).tabs( "option", "active", 2 );
于 2013-02-28T03:40:30.097 に答える
4

申し訳ありません。その時、私は電話をしていました。どうぞ ->

$('ele').tabs('select', index);

LTR のタブindexの表現はどこにありますか0 based

jQuery UI 1.9+ については、上記の回答を参照してください。私の答えは、jQuery UI 1.8 以下のみです。

于 2012-10-04T16:56:29.180 に答える