您好我正在使用parsleyjs进行表单验证。
http://parsleyjs.org/documentation.html
我想要一个自定义验证器,以便输入值不能与我指定的值相等...
这里可以看到使用jQuery验证的示例...... How to add a Not Equal To rule in jQuery.validation
我在想...... ...
$( '#form' ).parsley( {
validators: {
notEqual: function ( val, ??? ) {
return val != ??? ;
}
}
, messages: {
notEqual: "Please enter a valid value"
}
} );
由于
答案 0 :(得分:3)
这对我有用。您还必须设置data-notEqual="#element"
。
validators: {
notEqual: function ( val, elem ) {
return val !== $( elem ).val();
}
},
messages: {
notEqual: "This value should not be the same."
},
希望这就是你要找的东西!