簡體   English   中英

jQuery 手風琴在點擊上一個手風琴時不會刪除 class

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

我正在制作一個常見問題解答部分,但在使手風琴正常運行方面遇到了一些麻煩。

當我一個一個單擊它們並在打開下一個之前關閉它們時,一切都很好。 但是,如果我打開一個,保持打開狀態,然后單擊下一個,“顯示”class 將保留在前一個上。

我希望我說清楚了,你可以在我的代碼中看到我在說什么:

 $(".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

您可以使用.not()排除所有不在accordion__box內的元素,其中單擊了js-accordion

演示代碼

 $(".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