简体   繁体   English

jQuery 手风琴在点击上一个手风琴时不会删除 class

[英]jQuery accordion doesn't remove the class on click on the previous accordion

I am making an FAQs section and I have some trouble with making the accordions act right.我正在制作一个常见问题解答部分,但在使手风琴正常运行方面遇到了一些麻烦。

When I click them one by one and close them before I open the next one, it's all fine.当我一个一个单击它们并在打开下一个之前关闭它们时,一切都很好。 However if I open one, leave it open, and then click on the next one, the "show" class remains on the previous one.但是,如果我打开一个,保持打开状态,然后单击下一个,“显示”class 将保留在前一个上。

I hope I am making myself clear, you can see what Im talking about in my code:我希望我说清楚了,你可以在我的代码中看到我在说什么:

 $(".js-accordion").click(function(e) { e.preventDefault(); var $this = $(this); if ($this.next().hasClass("show")) { $this.removeClass("show"); $this.next().removeClass("show"); $this.next().stop().slideUp(350); } else { $this.addClass("show"); $this.parent().parent().find("div.accordion__inner").removeClass("show"); $this.parent().parent().find("div.accordion__inner").stop().slideUp(350); $this.next().stop().toggleClass("show"); $this.next().stop().slideToggle(350); } });
 .accordion__box { max-width: 600px; margin: 20px auto; box-shadow: 0px 14px 20px 5px rgba(0, 0, 0, 0.1); }.accordion__inner { overflow: hidden; display: none; padding: 10px 20px; position: relative; background-color: #fff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }.accordion__header { border-radius: 5px; font-weight: 900; font-size: 24px; font-family: "Lato", sans-serif; margin-bottom: 0; color: #fff; display: flex; justify-content: space-between; background-color: #004a80; padding: 20px 30px 20px 40px; cursor: pointer; transition: all 0.3s ease-in-out; }.accordion__header.show { background-color: #EF2A72; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }.accordion__header.show::after { transition: all 0.3s ease-in-out; transform: rotate(180deg); }.accordion__header::after { content: "\f107"; color: #fff; max-width: 30px; height: 30px; width: 100%; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-family: "Font Awesome 5 Pro"; font-size: 30px; font-weight: 500; transition: all 0.3s ease-in-out; }
 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div class="accordion"> <div class="accordion__box"> <div class="accordion__header js-accordion">Who is this program for?</div> <div class="accordion__inner"> <p>I've created this program for busy women of any age. No matter what your current weight… fitness level… or schedule looks like — this workout is for you. If you want to get a lifted, toned and curvy booty that's also strong and athletic, this program is yours.</p> </div> </div> <div class="accordion__box"> <div class="accordion__header js-accordion">Why is this method better than others?</div> <div class="accordion__inner"> <p>I've created this program for busy women of any age. No matter what your current weight… fitness level… or schedule looks like — this workout is for you. If you want to get a lifted, toned and curvy booty that's also strong and athletic, this program is yours.</p> </div> </div> </div>

https://codepen.io/christmastrex/pen/oNzQEva https://codepen.io/christmastrex/pen/oNzQEva

You can use .not() to exclude all elements which is not inside accordion__box where js-accordion is been clicked.您可以使用.not()排除所有不在accordion__box内的元素,其中单击了js-accordion

Demo Code :演示代码

 $(".js-accordion").click(function(e) { e.preventDefault(); var $this = $(this); $this.toggleClass("show")//add show to one which is clicked $this.closest(".accordion").find(".js-accordion").not($this).removeClass("show")//remove from other $this.next().slideToggle(350);//show accrodian $this.closest(".accordion").find(".accordion__inner").not($this.next()).stop().slideUp(350);//slideup another });
 .accordion__box { max-width: 600px; margin: 20px auto; box-shadow: 0px 14px 20px 5px rgba(0, 0, 0, 0.1); }.accordion__inner { overflow: hidden; display: none; padding: 10px 20px; position: relative; background-color: #fff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }.accordion__header { border-radius: 5px; font-weight: 900; font-size: 24px; font-family: "Lato", sans-serif; margin-bottom: 0; color: #fff; display: flex; justify-content: space-between; background-color: #004a80; padding: 20px 30px 20px 40px; cursor: pointer; transition: all 0.3s ease-in-out; }.accordion__header.show { background-color: #EF2A72; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }.accordion__header.show::after { transition: all 0.3s ease-in-out; transform: rotate(180deg); }.accordion__header::after { content: "\f107"; color: #fff; max-width: 30px; height: 30px; width: 100%; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-family: "Font Awesome 5 Pro"; font-size: 30px; font-weight: 500; transition: all 0.3s ease-in-out; }
 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div class="accordion"> <div class="accordion__box"> <div class="accordion__header js-accordion">Who is this program for?</div> <div class="accordion__inner"> <p>I've created this program for busy women of any age. No matter what your current weight… fitness level… or schedule looks like — this workout is for you. If you want to get a lifted, toned and curvy booty that's also strong and athletic, this program is yours.</p> </div> </div> <div class="accordion__box"> <div class="accordion__header js-accordion">Why is this method better than others?</div> <div class="accordion__inner"> <p>I've created this program for busy women of any age. No matter what your current weight… fitness level… or schedule looks like — this workout is for you. If you want to get a lifted, toned and curvy booty that's also strong and athletic, this program is yours.</p> </div> </div> </div>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM