我喜欢 Vytautas Butkus 对这个问题的解决方案(第二个答案在jQuery hide and show toggle div with plus and minus icon and a demo here):
$(".toggle").on("click", function(e){
$(this).toggleClass("expanded");
$content.slideToggle();
});
但是,如果每页有多个 div,则此代码会同时切换它们。其他解决方案接近我正在寻找的东西,但我喜欢这段代码使用图像,在切换时更改图像,并且不使用锚标签。如何修改此代码以使其功能相同但仅打开被单击的 div?提前致谢。