gpt4 book ai didi

javascript - 编写自定义验证规则

转载 作者:行者123 更新时间:2023-11-28 02:38:42 24 4
gpt4 key购买 nike

我需要编写自己的 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>

最佳答案

使用正则表达式:

/^[A-Z]{2}[0-9]{10}[A-Z]$/i

关于javascript - 编写自定义验证规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13018230/

24 4 0
文章推荐: javascript - 当我隐藏
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com