如何在 jQuery.validation 中添加不等于规则

Posted

技术标签:

【中文标题】如何在 jQuery.validation 中添加不等于规则【英文标题】:how to add NOTEqual To rule in jQuery.validation 【发布时间】:2018-12-04 07:44:48 【问题描述】:

我想知道如何在两个输入文本框中为不相等的值添加 jquery 验证。我试过这个Example,但它不适合我。

jQuery 代码:

$.validator.addMethod("notEqual", function (value, element, param) 
            return this.optional(element) || value != param;
        , "cannot be same as oldpassword");

        $("#frmAddEdit").validate(
            rules: 
                "txtoldpassword":  required: true ,
                "txtnpassword":  required: true, notEqual:"#txtoldpassword" ,
            ,
            messages: 
                "txtoldpassword":  required: "old Password is required" ,
                "txtnpassword":  required: "New Password is required" ,
            ,
            submitHandler: function (form) 
                ChangeUserPassword();
                return false;
            
        );

当我在验证方法参数上设置警报时显示相同的值(即#txtoldpassword),当我这样设置时notEqual: $("#txtoldpassword").val() 参数变为""(空白)

请帮帮我。

【问题讨论】:

【参考方案1】:

我刚刚更改了为 notEqual 传递文本框值的方式,它对我有用。

JQuery 代码:

  $("#frmAddEdit").validate(
            rules: 
                "txtoldpassword":  required: true, noSpace: true ,
                "txtnpassword": 
                    required: true, noSpace: true, notEqual: function ()  return $("#txtoldpassword").val() ,
                
            ,
            messages: 
                "txtoldpassword":  required: "old Password is required" ,
                "txtnpassword":  required: "New Password is required" ,
            ,
            submitHandler: function (form) 
                ChangeUserPassword();
                return false;
            
        );

【讨论】:

以上是关于如何在 jQuery.validation 中添加不等于规则的主要内容,如果未能解决你的问题,请参考以下文章

如何在jQuery.validation中添加Not Equal To规则

使用 Jquery Validation 验证印度车辆编号的车辆编号

使用 Jquery Validation 添加自定义错误消息

jquery.validation自定义正则表达式验证

jQuery validation 去除空格

jQuery Validation 插件:禁用对指定提交按钮的验证