如何使用 ValidationEngine 启用条件验证
我正在使用 ValidationEngine 进行客户端验证。我有一个场景
在我的表单中,我有 3 个文本框,现在我想验证所有字段上的“必填”,仅当其中任何一个被填充时,否则我可以继续使用空白表单
如何使用 JqueryvalidationEngine 执行此操作
I am using ValidationEngine for client side validation. I have a scenario
In my form I have 3 text box, now I want to validate "required" on all the field only if any one of them is filled, else I can proceed with blank form
How do I do this using Jquery validationEngine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 ValidationEngine 的文档来看,它看起来并不支持可选验证。我建议使用 轻量级验证插件 或 jQuery 验证。
From the documentation for ValidationEngine it doesn't look like it supports optional validation. I would suggest using lightweight validation plugin or jQuery validation.
您必须使用 condRequired 设置条件验证。如果您想使用复选框,这也很有用。下面我举个使用的例子:
You must use condRequired to set a conditional validation. This is also useful if you want to use chekboxes. Below I put the example of the use: