代码
//中英文字符长度
String.prototype.mb_length = function(){
var len = 0;
for(var i = 0; i < this.length; i++) {
len += (this.charCodeAt(i) < 0 || this.charCodeAt(i) > 255) ? 1 : 0.5;
}
return len;
};//中英文字符长度
String.prototype.mb_lengt