xVal 忽略隐藏的字段

发布于 2024-08-26 22:29:57 字数 456 浏览 4 评论 0原文

我有一个表格,用户可以通过支票或电子转账切换接收资金。当他们在列表框中选择任一方式时,表单的相应部分就会隐藏。如果他们选择电子转账,则仅显示银行信息字段;如果他们选择通过支票,则仅显示地址信息,而隐藏银行字段。

好吧,既然他们选择了我想要的一种方式,就不验证隐藏的东西。 (客户端)

有没有办法将 xVal 设置为仅验证不可见的字段?

我尝试使用以下内容覆盖验证,但没有骰子......

$('#EditPayment').validate({
       elementwhichishidden: {
           required: function(element) {
              return ($(element).parent().parent().css('display') != 'none');
           }
       }
 });

I have a form where a user can toggle receiving funds either via check or via electronic transfer. When they choose either way in a list box, the respective part of the form hides. If they choose electronic transfer only bank info fields show, if they choose via check only address info shows and the bank fields are hidden.

Well, since they choose one way or another I want to, not validate for something that is hidden. (Client Side)

Is there a way to set xVal to only validate fields that are not visible?

I tried to override validate with the following but no dice...

$('#EditPayment').validate({
       elementwhichishidden: {
           required: function(element) {
              return ($(element).parent().parent().css('display') != 'none');
           }
       }
 });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我一直都在从未离去 2024-09-02 22:29:57

我发现,忽略使用 xVal Validation 隐藏的字段的最佳方法是实际禁用未使用的隐藏字段。这样 jQuery 的 validate() 将忽略它们并且不验证它们。

validate() 实际上应该忽略 .is(':hidden') 的任何内容,但由于某种原因,这对我来说并不成功。但禁用它们就像一种魅力。

The best way to ignore fields that are hidden with xVal Validation, that I found, is to actually disable the hidden fields not in use. This way jQuery's validate() will ignore them and not validate them.

validate() is actually supposed to ignore anything that .is(':hidden') but for some reason that didn't pan out for me. But disabling them worked like a charm.

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