핵심 기능 :
다음과 같이 코드 코드를 복사하십시오.
<script type = "text/javaScript">
var zfl = {};
zfl.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;
RealLength를 반환하십시오.
}
</스크립트>
예제 사용 :
다음과 같이 코드 코드를 복사하십시오.
<script type = "text/javaScript">
ALERT (Zfl.getLength ( "China 123ZKRLJL");
</스크립트>
효과는 그림에 나와 있습니다.