标签: jquery
我写了一个jquery脚本here 但是$(this).toggleClass("active").next();部分存在问题。有了这个,所有标题标签都将处于“活动”类。如何仅为点击的标签指定“活动”类? 提前致谢
$(this).toggleClass("active").next();
答案 0 :(得分:4)
您可以通过调用.removeClass()上的.siblings()将其从之前点击的标题中删除,如下所示:
.removeClass()
.siblings()
$(this).toggleClass("active").siblings().removeClass("active");
You can test it out here