//返回中文<[^\x00-\xff]编码不在0-255的字符> String.prototype.len = function() { return this.match(/[^\x00-\xff]/g); }; //返回中文、英文混合字符串的字节长度【一个中文两个字节】<[^\x00-\xff]编码不在0-255的字符> String.prototype.len = function() { return this.replace(/[^\x00-\xff]/g, '--').length; };