JS获取字符串实际长度

JS中默认中文字符长度和其它字符长度计算方法是一样的,但某些情况下我们需要获取中文字符串的实际长度,代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function strLength(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; 
}

 

JS获取字符串实际长度,布布扣,bubuko.com

JS获取字符串实际长度

上一篇:html 前台通用表单


下一篇:css3简单的圆角框