Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ValidationEngine 进行客户端验证。我有一个场景
在我的表单中,我有 3 个文本框,现在我想验证所有字段的“必填”,前提是其中任何一个都已填写,否则我可以继续使用空白表单
如何使用 Jquery 验证引擎执行此操作
您必须使用 condRequired 设置条件验证。如果您想使用复选框,这也很有用。下面我举个使用的例子:
<input value="" type="text" name="field1" id="fieldToCheck" /> <input class="validate[condRequired[fieldToCheck]]" type="text" id="field2" name="fieldRequiredIfFiel1"/>
从 ValidationEngine 的文档来看,它看起来并不支持可选验证。我建议使用轻量级验证插件或jQuery 验证。