gpt4 book ai didi

javascript - Mootools Form.Validator 复选框

转载 作者:行者123 更新时间:2023-11-28 16:24:19 24 4
gpt4 key购买 nike

我想验证一个复选框。实际上多个具有相同名称的:

<input type="checkbox" name="somefield" value="1">1
<input type="checkbox" name="somefield" value="2">2
<input type="checkbox" name="somefield" value="3">3

我想确保在提交表单之前至少选中一个复选框。

所以我添加了一个验证器:

Form.Validator.add('isChecked', {
errorMsg: 'One of these fields is required',
test: function(element){
if (element.type == 'checkbox' || element.checked==true) return false;
else return true;
}
});

但这需要检查所有字段...

在最起码的情况下,我想弹出相同的 Form.Validator.Tips 错误消息(无法弄清楚它是如何触发的)...

那么我该如何处理这个问题呢?

最佳答案

显然有一个验证器:

validate-required-check

哦!

关于javascript - Mootools Form.Validator 复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8531586/

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