한글이 들어간 문자열 길이 구하는 스크립트
페이지 정보
작성자 최고관리자 작성일 21-02-10 17:29 조회 7,813 댓글 0본문
<script>
function getLength(str){
var Mess = str.length+(escape(str)+"%u").match(/%u/g).length-1;
alert (Mess);
}
</script>
<form>
<input type=text name=detail>
<INPUT name=button1 type=button value="유효성검사" onclick='getLength(detail.value);'>
</form>
출처
http://korea.internet.com/channel/content.asp?kid=34&cid=236&nid=14501
function getLength(str){
var Mess = str.length+(escape(str)+"%u").match(/%u/g).length-1;
alert (Mess);
}
</script>
<form>
<input type=text name=detail>
<INPUT name=button1 type=button value="유효성검사" onclick='getLength(detail.value);'>
</form>
출처
http://korea.internet.com/channel/content.asp?kid=34&cid=236&nid=14501
댓글목록 0
등록된 댓글이 없습니다.