gpt4 book ai didi

javascript - javascript 中复选框的 oncheck 监听器

转载 作者:技术小花猫 更新时间:2023-10-29 12:23:27 29 4
gpt4 key购买 nike

我的表单底部有这样的代码。

<p>
<input type="checkbox" id="agreed">
I agree to keep my Username and Password confidential and uphold
the integrity of this pharmacy
</p>
<input type="submit" id="submit" disabled class="formbutton button-primary" value="Go">

我希望这个 JavaScript 中的监听器能够启用提交按钮。我知道这可能是错误的,但我的 JavaScript 看起来有点像这样

function track() {
if ( document.getElementById("agreed").checked==true ) {
document.getElementById("submit").removeAttribute("disabled");
} else {
document.getElementById("agreed").checked==false
}
};

最佳答案

您可以对输入执行此操作:

<input type='checkbox' onchange='handleChange(this);'>Checkbox

这用于启用按钮:

function handleChange(checkbox) {
if(checkbox.checked == true){
document.getElementById("submit").removeAttribute("disabled");
}else{
document.getElementById("submit").setAttribute("disabled", "disabled");
}
}

关于javascript - javascript 中复选框的 oncheck 监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31705665/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com