首页 > 编程语言 > 详细

mbStringLength 获取javascript字符串字节数

时间:2014-09-25 00:38:19      阅读:327      评论:0      收藏:0      [点我收藏+]

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字符串字节数

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!