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 index = $('#accordion .in').parent().index();
これを使用して、アコーディオンアイテムであるアコーディオングループを取得できます。
var accordionItem = $('.accordion .accordion-body.in:first').parents('.accordion-group');
これで、accordionItemのインデックスを取得できます。