如何有条件地禁用 xVal 中的客户端验证?
我在 ASP.NET MVC 项目中使用 xVal。其中一个表单有两个按钮,我想在单击其中一个按钮时禁用客户端验证。有没有办法有条件地禁用 xVal 中的客户端验证?
I am using xVal in a ASP.NET MVC project. One of the forms has two buttons and i want to disable the client side validation when one of the buttons is clicked. Is there a way to conditionally disable client side validation in xVal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们可以在 JQuery 验证方法的帮助下仅在需要时执行规则,而不是禁用客户端验证。
例如:
在按钮单击事件上触发验证规则...应用 jquery 表单验证...
Instead of disabling client side validation... we can have rules execution only when we need it with the help of JQuery validate method.
For Example:
On button click event upon which validation rules to be fired... apply jquery form validation...
特别不确定 xVal,但使用 Asp.Net 表单,您可以执行以下操作-
Not sure about xVal in particular, but with an Asp.Net form you can do the following-