【问题标题】:Accordion panel extra expand手风琴面板额外扩展
【发布时间】:2020-10-03 10:42:16
【问题描述】:

我们的网站使用带有可折叠面板的手风琴。在其中一个手风琴面板中,有几个复选框可以选中或取消选中。复选框 1 - 如果选中 - 显示另一组两个复选框,但显示隐藏复选框时手风琴面板不会展开。

当新的复选框出现时,如何使手风琴面板也展开?

下面的 HTML + CSS + JS 正在使用中。

// Accordion panels
    var acc = document.getElementsByClassName("troubleshooter-accordion");
    var i;
    for (i = 0; i < acc.length; i++) {
      acc[i].addEventListener("click", function() {
        this.classList.toggle("active");
        var panel = this.nextElementSibling;
        if (panel.style.maxHeight) {
          panel.style.maxHeight = null;
        } else {
          panel.style.maxHeight = panel.scrollHeight + "px";
        } 
      });
    }
// Hide checkboxes
    function showextra() {
      var checkBox = document.getElementById("check1a");
      var extra = document.getElementById("checkbox1a-extra");
      if (checkBox.checked == true){
        extra.style.display = "block";
      } else {
        extra.style.display = "none";
      }
    }
.troubleshooter-accordion {
    background-color: rgba(0,175,75,1.00);
    border: 1px solid rgba(0,175,75,1.00);
    color: rgba(255,255,255,1.00);
    padding: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    outline: none;
    font-size: 1.15em;
    transition: 0.4s;
    margin-top: 2px;
    border-radius: 8px;
}
.active, .troubleshooter-accordion:hover {
    background-color: rgba(255,255,255,1.00);
    border: 1px solid rgba(0,145,255,1.00);
    color: rgba(0,145,255,1.00);
}
.troubleshooter-panel {
    padding: 0 16px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-radius: 8px;
}
.troubleshooter-panel h4 {
    margin: 16px 0
}
.infobox {
    border: 2px solid rgba(0,175,75,1.00);
    border-radius: 8px;
    margin-top: 16px;
    padding: 24px 16px;
}
.checkbox-extra {
    display: none;
    margin-left: 24px;
}
        <button class="troubleshooter-accordion">Accordion</button>
        <div class="troubleshooter-panel">
          <h4 align="center">Check the boxes below</h4>
          <hr>
          <p>
            <label><input type="checkbox" id="check1a" name="check1a" value="check1a" class="check1a" onclick="showextra()">&nbsp; Checkbox 1</label>
            <div class="checkbox-extra" id="checkbox1a-extra">
              <p>
                <label><input type="checkbox" id="check1a1" name="check1a1" value="check1a1" class="check1a1">&nbsp; Checkbox 1-A</label><br>
                <label><input type="checkbox" id="check1a2" name="check1a2" value="check1a2" class="check1a2">&nbsp; Checkbox 1-B</label>
              </p>
            </div>
            <hr>
          </p>
          <p>
            <label><input type="checkbox" id="check1b" name="check1b" value="check1b" class="check1b">&nbsp; Checkbox 2</label>
          </p>
          <hr>
        </div>

【问题讨论】:

    标签: javascript css checkbox accordion


    【解决方案1】:

    当您第一次展开手风琴时,您通过以下方式设置它的最大高度值:

    panel.style.maxHeight = panel.scrollHeight + "px";
    

    当您第二次展开手风琴时,这当然应该再次发生,否则最大高度保持不变。

    要解决此问题,您只需从复选框中查找父面板并再次设置最大高度:

     var panel = checkBox.closest('.troubleshooter-panel');
     panel.style.maxHeight = panel.scrollHeight + "px";
    

    完整代码:

    // Accordion panels
        var acc = document.getElementsByClassName("troubleshooter-accordion");
        var i;
        for (i = 0; i < acc.length; i++) {
          acc[i].addEventListener("click", function() {
            this.classList.toggle("active");
            var panel = this.nextElementSibling;
            if (panel.style.maxHeight) {
              panel.style.maxHeight = null;
            } else {
              panel.style.maxHeight = panel.scrollHeight + "px";
            } 
          });
        }
    // Hide checkboxes
        function showextra() {
          var checkBox = document.getElementById("check1a");
          var extra = document.getElementById("checkbox1a-extra");
          if (checkBox.checked == true){
            extra.style.display = "block";
            var panel = checkBox.closest('.troubleshooter-panel');
            panel.style.maxHeight = panel.scrollHeight + "px";
          } else {
            extra.style.display = "none";
            var panel = checkBox.closest('.troubleshooter-panel');
            panel.style.maxHeight = panel.scrollHeight + "px";
          }
        }
    .troubleshooter-accordion {
        background-color: rgba(0,175,75,1.00);
        border: 1px solid rgba(0,175,75,1.00);
        color: rgba(255,255,255,1.00);
        padding: 16px;
        cursor: pointer;
        width: 100%;
        text-align: center;
        outline: none;
        font-size: 1.15em;
        transition: 0.4s;
        margin-top: 2px;
        border-radius: 8px;
    }
    .active, .troubleshooter-accordion:hover {
        background-color: rgba(255,255,255,1.00);
        border: 1px solid rgba(0,145,255,1.00);
        color: rgba(0,145,255,1.00);
    }
    .troubleshooter-panel {
        padding: 0 16px;
        background-color: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        border-radius: 8px;
    }
    .troubleshooter-panel h4 {
        margin: 16px 0
    }
    .infobox {
        border: 2px solid rgba(0,175,75,1.00);
        border-radius: 8px;
        margin-top: 16px;
        padding: 24px 16px;
    }
    .checkbox-extra {
        display: none;
        margin-left: 24px;
    }
         <button class="troubleshooter-accordion">Accordion</button>
            <div class="troubleshooter-panel">
              <h4 align="center">Check the boxes below</h4>
              <hr>
              <p>
                <label><input type="checkbox" id="check1a" name="check1a" value="check1a" class="check1a" onclick="showextra()">&nbsp; Checkbox 1</label>
                <div class="checkbox-extra" id="checkbox1a-extra">
                  <p>
                    <label><input type="checkbox" id="check1a1" name="check1a1" value="check1a1" class="check1a1">&nbsp; Checkbox 1-A</label><br>
                    <label><input type="checkbox" id="check1a2" name="check1a2" value="check1a2" class="check1a2">&nbsp; Checkbox 1-B</label>
                  </p>
                </div>
                <hr>
              </p>
              <p>
                <label><input type="checkbox" id="check1b" name="check1b" value="check1b" class="check1b">&nbsp; Checkbox 2</label>
              </p>
              <hr>
            </div>

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-02-06
      • 1970-01-01
      • 1970-01-01
      • 2021-06-13
      • 1970-01-01
      • 2021-07-07
      • 2018-01-26
      • 2014-02-18
      相关资源
      最近更新 更多