我一直在创建一个具有大量<input type="checkbox">
搜索和过滤功能的表单。请在下面找到代码;
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" name="type" value="1" id="type1">
<label class="custom-control-label" for="type1">Filter Sub Item</label>
</div>
但是当页面在浏览器中呈现时,DOM 会为每个附加一个新的隐藏字段<input type="checkbox">
<input type="hidden" name="_type" value="on">
我正在使用 Boostrap CSS 库进行表单设计。如何阻止它自动生成表单中的隐藏字段。
当我使用 method="get" 提交表单时,这些隐藏值出现在浏览器地址栏中。