码迷,mamicode.com
首页 > Web开发 > 详细

js 获得字符串字节数

时间:2014-07-21 11:27:49      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   cti   

用到了就记下来,获得字符串字节长度,适用于汉字跟英文混合输入

 1 function getBytesCount(str)
 2 {
 3   var bytesCount = 0;
 4   if (str != null)
 5   {
 6     for (var i = 0; i < str.length; i++)
 7     {
 8       var c = str.charAt(i);
 9           if (c.match(/[^\x00-\xff]/ig) != null) //全角
10            {
11               bytesCount += 2;
12            }
13           else
14            {
15               bytesCount += 1;
16            }
17     }
18   }
19   return bytesCount;
20 }

js 获得字符串字节数,布布扣,bubuko.com

js 获得字符串字节数

标签:style   blog   color   io   for   cti   

原文地址:http://www.cnblogs.com/mauiie/p/3857752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!