在js中添加方法

先定义,尽可能定义在前面,不然页面报错,会提示undefined。this /** * 计算字符串长度(一个汉字等同于一个英文字母) */ String.prototype.realLength1 = function() { return this.replace(/[^\x00-\xff]/g, "*").trim().length; }; 使用:prototype var result
相关文章
相关标签/搜索