jquery 解决验证中文的问题

<script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="/js/jquery.validate.js"></script>
<script type="text/javascript">
$().ready(function() {
$.validator.addMethod("yunnumcode", function(value, element) {   
  return this.optional(element) || /^[(\u4e00-\u9fa5)|(0-9)]+$/i.test(value);   
}, "只能包括中文和数字"); 
$.validator.addMethod("vincode", function(value, element) {   
  return this.optional(element) || /^[\u4e00-\u9fa5]{1}[a-zA-Z]{1}([0-9]|[A-Za-z0-9]){5}$/i.test(value);   
}, "由1个中文字(代表省或直辖市的简称)、1个英文字母(代表省或直辖市下属行政单位)、5位数字或5位数字和字母的组合");
var valid = $("#form1").validate({
rules: {
                         yunnum:{
required:true,
yunnumcode: true
},
                vin: {
  required: true,
  vincode: '由1个中文字(代表省或直辖市的简称)、1个英文字母(代表省或直辖市下属行政单位)、5位数字或5位数字和字母的组合',

       }}messages: {

vin: {
required: "请输入车牌号",
vincode: '由1个中文字(代表省或直辖市的简称)、1个英文字母(代表省或直辖市下属行政单位)、5位数字或5位数字和字母的组合'

},
                                yunnum:{
required: "请输入运管编号",
yunnumcode: "只能包括中文和数字"
}
}
}); 

<form name="form1" id="form1" method="post" action="" >

中文和数字:<input type="text" name="yunnum"    /><br/>
由1个中文字(代表省或直辖市的简称)、1个英文字母(代表省或直辖市下属行政单位)、5位数字或5位数字和字母的组合:<br>
<input type="text" name="vin"   />
<input type="submit" name="submit"   />
</form>

你可能感兴趣的:(jquery)