js 计算字符串长度(含中文)

 //计算字符串长度(含中文)
  String.prototype.len = function() {  
      return this.replace(/[^/x00-/xff]/g,"**").length;
  } 

你可能感兴趣的:(function)