我有自定义jQuery验证功能,但我无法让它按我的意愿运行: 如果元素为空,我不想验证它,但如果它不为空,我想检查,如果值是正确的。
我的自定义函数如下所示:
$.validator.addMethod("phoneCZ", function(phone_number, element) {
phone_number = phone_number.replace(/\s+/g, "");
if(!phone_number.match(/^((\+420)|(\+421))??[0-9]{3}?[0-9]{3}?[0-9]{3}$/)){
return (phone_number.length < 1);
}
else {
return (phone_number.length >= 9);
}
}, "Neplatné telefonní číslo");
也许只是一些描述: 允许的格式为: 123456789 420123456789 421123456789
如果数字格式不正确,我返回true,如果长度为0,则返回false。我检查格式是否匹配,如果长度至少为9个字符。
答案 0 :(得分:5)
有一种名为optional
的方法可以让你这样做
$.validator.addMethod("phoneCZ", function (phone_number, element) {
if (this.optional(element)) {
return true;
}
phone_number = phone_number.replace(/\s+/g, "");
if (!phone_number.match(/^((\+420)|(\+421))??[0-9]{3}?[0-9]{3}?[0-9]{3}$/)) {
return (phone_number.length < 1);
} else {
return (phone_number.length >= 9);
}
}, "Neplatné telefonní číslo");
演示:
$.validator.addMethod("phoneCZ", function(phone_number, element) {
if (this.optional(element)) {
return true;
}
phone_number = phone_number.replace(/\s+/g, "");
if (!phone_number.match(/^((\+420)|(\+421))??[0-9]{3}?[0-9]{3}?[0-9]{3}$/)) {
return (phone_number.length < 1);
} else {
return (phone_number.length >= 9);
}
}, "Neplatné telefonní číslo");
jQuery(function($) {
var validator = $('#myform').validate({
debug: true,
rules: {
phoneCZ1: {
phoneCZ: true
},
phoneCZ2: {
required: true,
phoneCZ: true
}
},
messages: {}
});
});
&#13;
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.12.0/jquery.validate.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.12.0/additional-methods.js"></script>
<form id="myform" method="post" action="">
<div>
<input name="phoneCZ1" />
</div>
<div>
<input name="phoneCZ2" />
</div>
<input type="submit" value="Save" />
</form>
&#13;