jQuery 仅在非空白时验证

发布于 2024-12-10 16:12:35 字数 302 浏览 0 评论 0原文

我使用最新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难得心□动 2024-12-17 16:12:35

删除所需的类,使其成为可选的。
使用 minlength 等于 1 来检查它是否不为空。

<%= f.text_field :fax, :class => "phone", :minlength => "1" %>

Remove the required class so that it is optional.
use the minlength equals 1 to check if its not empty.

<%= f.text_field :fax, :class => "phone", :minlength => "1" %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文