js获取字符串的实际长度
<html>
<head>
<title>js获取字符串的实际长度</title>
</head>
<body>
js获取字符串的实际长度
<script type="text/javascript">
var obj = new Object();
obj.getLength = function(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;
};
alert(obj.getLength('132c我是'));
</script>
</body>
</html>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
蕃薯耀 2013年10月31日 14:32:28 星期四