码迷,mamicode.com
首页 > 编程语言 > 详细

mbStringLength 获取javascript字符串字节数

时间:2014-09-25 02:20:27      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:io   java   ar   for   sp   cti   on   c   amp   

function mbStringLength(s) { 
var totalLength = 0; 
var i; 
var charCode; 
for (i = 0; i < s.length; i++) { 
charCode = s.charCodeAt(i); 
if (charCode < 0x007f) { 
totalLength = totalLength + 1; 
} else if ((0x0080 <= charCode) && (charCode <= 0x07ff)) { 
totalLength += 2; 
} else if ((0x0800 <= charCode) && (charCode <= 0xffff)) { 
totalLength += 3; 


//alert(totalLength); 
return totalLength; 

mbStringLength 获取javascript字符串字节数

标签:io   java   ar   for   sp   cti   on   c   amp   

原文地址:http://www.cnblogs.com/okBabyfaceBoy/p/3991834.html

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