我需要编写自己的javascript规则来验证表单。
我有一个名为code
的字段,我需要对其进行特殊验证:
这个领域有13个职位。第一个和第二个是字母,倒数第二个是字母。其他位置(3-11)是数字。
那么,我如何用这些条件验证这个字段呢?
<html>
<head>
<script type="text/javascript"
src="javascript/jquery-1.8.2.min.js" >
</script>
<script type="text/javascript"
src="javascript/jquery.validate.min.js" >
</script>
</head>
<body>
<form id="meu_form" action="" method="post" >
Code:<br />
<input type="text" name="code" id="code" /><br />
<input type="submit" value="Save" />
</form>
</body>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#meu_form').validate({
rules:{
code:{
required: true,
minlength: 13
maxlength: 13
}
},
messages:{
code:{
required: "Required field.",
minlength: "Exactly 13 length."
}
}
});
});
</script>
</html>
答案 0 :(得分:1)
使用RegEx:
/^[A-Z]{2}[0-9]{10}[A-Z]$/i