邮箱验证
代码如下 | 复制代码 |
var re = /^[_a-zA-Z0-9-.]+@([-_a-zA-Z0-9]+.)+[a-zA-Z0-9]{2,3}$/; if (!thisinput.value.match(re)) |
过滤空格与
代码如下 | 复制代码 |
String.prototype.trim = function() { return this.replace(/(^s*)|(s*$)/g, ""); } |
正则中文字符
代码如下 | 复制代码 |
//Count string byte number, return integer String.prototype.ByteCount = function() { txt = this.replace(/(<.*?>)/ig,""); txt = txt.replace(/([u0391-uFFE5])/ig, "11"); var count = txt.length; return count; } |
用户名验证
代码如下 | 复制代码 |
var re = /^[a-zA-Z1-9_]{6,20}$/; if (!thisinput.value.match(re)) { reguserinfo.className = "show err"; reguserinfo.innerHTML = "输入不符合规范"; } |
时间: 2024-09-27 02:45:33