所以免责声明,我已经找到了答案,但我将其作为一个问题发布,以防它帮助其他人。
场景:在页面中的表单中,您有几个手风琴,以便用户可以折叠他们已经看过的部分。如果您按照大多数示例进行扩展,手风琴实际上会自动提交表单,而不是bueno。
<!DOCTYPE html>
<html>
<head>
<style>
.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}
</style>
</head>
<body>
<h2>Accordion</h2>
<form action="fail" method="post" enctype="multipart/form-data">
<button class="accordion">Section 1</button>
<div class="panel">
<input type="checkbox" name="checkbox1.1">Checkbox 1.1
<br>
<input type="checkbox" name="checkbox1.2">Checkbox 1.2
</div>
<button class="accordion">Section 2</button>
<div class="panel">
<input type="checkbox" name="checkbox2.1">Checkbox 1.1
<br>
<input type="checkbox" name="checkbox2.2">Checkbox 1.2
</div>
<input type="submit" value="Submit">
</form>
<script>
var acc = document.getElementsByClassName("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.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
});
}
</script>
</body>
</html>
答案 0 :(得分:1)
基本上手风琴的按钮被视为提交按钮,即使我们已经有提交按钮。要覆盖此行为,只需将按钮类型声明为按钮:
<button type="button" class="accordion">Section 1</button>
<button type="button" class="accordion">Section 2</button>
这对某些人来说可能是显而易见的,但鉴于我很少处理网络内容,这对于查找和解决方案来说是非常令人沮丧的副作用,所以我希望它可以帮助其他人。