微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

MVC 表单数据验证和 jquery 验证

如何解决MVC 表单数据验证和 jquery 验证

我正在为 TextBoxFor 和 DropDownListFor 使用 MVC 数据验证,并且它工作得很好。但我也想为复选框列表添加 jquery 验证有没有办法添加它?在我的 document.ready 中 我调用函数 ready validate();添加了 validator.addMethod 但它没有触发。

 <button type="submit" class="btn btn-primary px-4 float-right">Save</button>


 $(document).ready(function () {
validate();
}

var validate = function () {
            $.validator.addMethod("sources",function (value,elem,param) {
                if ($("[name='chkProduct']:checkBox:checked").length > 0) {
                    return true;
                } else {
                    return false;
                }
            },"You must select at least one!");

解决方法

尝试使用您的复选框,如下所示:

<fieldset id="checkArray">
<input type="checkbox" name="chk[]" value="Apples" />

<input type="checkbox" name="chk[]" value="Bananas" />
</fieldset>

然后像这样通过 Jquery 进行验证:

var atLeastOneIsChecked = $('#checkArray:checkbox:checked').length > 0;
//there should be no space between identifier and selector

// or,without the container:

var atLeastOneIsChecked = $('input[name="chk[]"]:checked').length > 0;

然后您可以使用 atLeastOneIsChecked 来验证是否有任何选中的框(true 或 false)并随心所欲。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。