摘要: 一些常用的验证脚本原文地址:http://www.cnblogs.com/buzzlight/archive/2010/06/30/1768393.html// 手机号码验证jQuery.validator.addMethod("mobile", function(value, element) { var length = value.length; var mobile = /^(((13[0-9]{1})|(15[0-9]{1}))+\d{8})$/ return this.optional(element) || (length == 11 && m 阅读全文
posted @ 2012-07-26 14:05 我思故我在... 阅读(375) 评论(0) 推荐(0)
摘要: 原文地址:http://my.oschina.net/numb/blog/16535validate_expand.js//字符验证jQuery.validator.addMethod("stringCheck", function(value, element) { return this.optional(element) || /^[\u0391-\uFFE5\w]+$/.test(value);}, "只能包括中文字、英文字母、数字和下划线");//中文字两个字节jQuery.validator.addMethod("byteRange 阅读全文
posted @ 2012-07-26 14:04 我思故我在... 阅读(206) 评论(0) 推荐(0)