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.
関数を実行する前に、 $(this) とクラスセレクターを使用できるかどうか疑問に思っています。
そうするのではなく;
$(this).toggleClass('open'); $('.closed').toggleClass('open');
もっと似たようなことをしてください。
$(this, '.closed').toggleClass('open');
実際には、上記は「.closed」のコンテキスト内で「this」を選択します
よろしく、
使用できますadd():
add()
$(".closed").add(this).toggleClass("open");
this一致した要素のセット (つまり ) に要素を追加し.closedます。
this
.closed