手风琴面板额外扩展

问题描述 投票:0回答:1

我们的网站使用带有可折叠面板的手风琴。在一个手风琴面板中,有几个复选框可以选中或取消选中。复选框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个回答
0
投票

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

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>
© www.soinside.com 2019 - 2024. All rights reserved.