javascript - jQuery Accordion 不会删除单击上一个 Accordion 时的类

标签 javascript html jquery sass

我正在制作一个常见问题解答部分,但在使 Accordion 正确运行方面遇到了一些麻烦。

当我逐个单击它们并在打开下一个之前关闭它们时,一切都很好。但是,如果我打开一个,使其保持打开状态,然后单击下一个,“显示”类仍保留在前一个类上。

我希望我说得清楚,你可以在我的代码中看到我在说什么:

$(".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()排除所有不在点击js-accordionaccordion__box内的元素。

演示代码:

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

关于javascript - jQuery Accordion 不会删除单击上一个 Accordion 时的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65721001/

相关文章:

javascript - 如何在动态代码中从字符串中插入匹配的单词?

javascript - Ajax 或 Javascript 在向导第二步中不起作用

javascript - 使用 PHP 和 jQuery 显示目录中的文件

html - 谁能告诉我如何让我的这些图像悬停?

javascript - 根据 Backbone.js 中的条件向不同的 el 添加 View

javascript - jQuery 中的 .html() 不起作用

javascript - 多步下一步按钮不起作用

javascript - 在数组中动态存储 li id

jQuery : Select a specific class name among multiple classes

javascript - 如何从动态创建的 HTML 字符串表中获取行?