如何使未选中的复选框值为 0,选中的值为 1?
Posted
技术标签:
【中文标题】如何使未选中的复选框值为 0,选中的值为 1?【英文标题】:How to make an unchecked checkbox value 0 and checked value of 1? 【发布时间】:2021-07-06 05:41:54 【问题描述】:我正在制作一个简单的注册表单,其中包含一个声明,询问用户是否已阅读条款和条件,但是当我控制台记录复选框的值时,它不会根据它是否被选中而改变。我该怎么做呢?我见过其他人问过这个问题,但他们使用的是像 jQuery 这样的 JS 库,而我没有使用,所以你如何仅使用基本的 JS 和 html 来区分选中和未选中的值
<div class="item">
<input type="checkbox" id="checkbox" value="1">
<label>I accept the <a id="termsLink" href="https://imgur.com/5lXi3Lc" target="_blank">Terms and Conditions</a></label>
</div>
这是包含复选框的 div。
【问题讨论】:
w3schools.com/tags/att_input_type_checkbox.asp 【参考方案1】:您可以添加事件处理程序 onClick 以实现此目的:
function handleClick(cb)
cb.value = cb.checked ? 1 : 0;
console.log(cb.value);
<div class="item">
<input type="checkbox" id="checkbox" value="1" onclick='handleClick(this);'>
<label>I accept the <a id="termsLink" href="https://imgur.com/5lXi3Lc" target="_blank">Terms and Conditions</a></label>
</div>
【讨论】:
【参考方案2】:你可以使用.checked
方法:
var checkBox = document.getElementById("checkbox");
if(checkbox.checked)
console.log("checked");
else
console.log("unchecked");
【讨论】:
【参考方案3】:您需要测试.checked
属性。要将其转换为整数,可以使用按位或运算符。
document.getElementById('checkbox').addEventListener('change', function(e)
let checked = this.checked;
console.log(checked);
console.log(checked | 0);
);
<div class="item">
<input type="checkbox" id="checkbox">
<label>I accept the <a id="termsLink" href="https://imgur.com/5lXi3Lc" target="_blank">Terms and Conditions</a></label>
</div>
【讨论】:
以上是关于如何使未选中的复选框值为 0,选中的值为 1?的主要内容,如果未能解决你的问题,请参考以下文章