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 代码中添加“活动”类我在 jQuery 中不太擅长我尝试但我不够幸运。
我想为活动状态添加类“活动”
我这里有一个样本
$(function() { $('#arrow').click(function() { $('.toggleContent').slideToggle('fast'); return false; }); });
要将其添加到单击的箭头,请使用$(this):
$(this)
$('#arrow').click(function(event) { $('.toggleContent').slideToggle('fast'); $(this).toggleClass('active'); event.preventDefault(); });