当前位置: 代码迷 >> JavaScript >> js 中取得 字符串 的字符长度
  详细解决方案

js 中取得 字符串 的字符长度

热度:549   发布时间:2013-03-21 10:08:17.0
js 中获得 字符串 的字符长度
function getLength(str) {
    var realLength = 0, len = str.length, charCode = -1;
    for (var i = 0; i < len; i++) {
        charCode = str.charCodeAt(i);
        if (charCode >= 0 && charCode <= 128) realLength += 1;
        else realLength += 2;
    }
    return realLength;
}

汉字字符长度为2,英文字符长度为1
  相关解决方案