mvc 3:禁用对选定字段的验证
当某些事件发生时,我需要禁用某些字段的验证,因此根据此线程中的建议: jQuery 禁用单个字段上的规则验证
我尝试了这个:
$("form").validate({
ignore: ".ignore"
})
但我发现它禁用了所有字段的所有验证,而不仅仅是那些带有 class="ignore" 的字段。
我这样做有什么问题吗?
I have a need to disable validation on certain fields when certain events occur, so based on the suggestion in this thread: jQuery disable rule validation on a single field
I tried this:
$("form").validate({
ignore: ".ignore"
})
But I am finding that it disables all validation on all fields, not just those with class="ignore".
Am I doing something wrong with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下怎么样:
How about trying:
我目前正在做这样的事情:
为任何 jQuery 选择器切换出 .ignore 或将它们链接起来,如“.ignore, input[type=hidden]”
I'm currently doing it something like this
Switch out .ignore for any jQuery selector or chain them up like ".ignore, input[type=hidden]"