Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
選択したタブとその前のタブに何かできるようにする必要があります。次のように、選択したタブのインデックスを取得できます。
var selectedIndex = $tabs.tabs('option', 'selected');
だから私は次のようなことをしたい
$leftTab = $tabs.getTabByIndex(selectedIndex - 1);
これに近いものはありますか?または、これを行う別の方法はありますか?
タブ要素の$tabs周りのコンテナであると仮定して、これを試してください:div
$tabs
div
$leftTab = $("div", $tabs).eq(selectedIndex - 1);