jQuery 仅在非空白时验证
我使用最新的 jQuery 版本 1.6.2 并验证 1.8。验证可选电话字段非空白的语法是什么?这不会触发它
<%= f.text_field :fax, :class => "phoneUS" %>
只有当我像这样将 required
添加到 class
时才会触发它
<%= f.text_field :fax, :class => "required phoneUS" %>
I'm on the latest jQuery version 1.6.2 and validate 1.8. What's the syntax for verifying a an optional phone field if non-blank? This doesn't trigger it
<%= f.text_field :fax, :class => "phoneUS" %>
It only gets triggered if I add required
to class
like such
<%= f.text_field :fax, :class => "required phoneUS" %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除所需的类,使其成为可选的。
使用 minlength 等于 1 来检查它是否不为空。
Remove the required class so that it is optional.
use the minlength equals 1 to check if its not empty.