我写了一个jQuery脚本here
但是$(this).toggleClass("active").next();
部分有问题。这样,所有标题标签将处于“活动”类中。如何仅为点击代码分配“活动”类别?
提前致谢
最佳答案
您可以通过调用.removeClass()
上的.siblings()
从先前单击的标题中将其删除,如下所示:
$(this).toggleClass("active").siblings().removeClass("active");
You can test it out here。
关于jquery - 我的 Accordion 中的“toggleClass”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3972437/