0
是否有任何方式接受數爲10〜50與「AB」和「NF'-jQuery的陣列驗證
以下代碼接受0到任意數量的沿‘AB’和‘NF’沿
<script>
$.validator.addMethod("custom_number", function(value, element) {
return this.optional(element) || value == "AB" || value == "NF" ||
value.match(/^[0-9,\+-]+$/);
}, "Please enter a valid number, or 'AB'");
$(document).ready(function(){
$("#form").validate({
rules: {
'hd[]': {
required: false,
custom_number: true
}
}
});
});
</script>
在此先感謝。