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.
既存の jQuery コードに "active" クラスを追加したい jQuery は苦手ですが、うまくいきません。
アクティブ状態のクラス「アクティブ」を追加したい
ここにサンプルがあります
$(function() { $('#arrow').click(function() { $('.toggleContent').slideToggle('fast'); return false; }); });
クリックされた矢印に追加するには、次を使用します$(this)。
$(this)
$('#arrow').click(function(event) { $('.toggleContent').slideToggle('fast'); $(this).toggleClass('active'); event.preventDefault(); });