欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js获取字符串的实际长度

程序员文章站 2022-07-14 19:40:21
...

 

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 星期四