한글이 들어간 문자열 길이 구하는 스크립트
페이지 정보
본문
<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
- 이전글select 에서 여러값 선택 (multiple) 21.02.10
- 다음글이미지 사이즈 재 조정(너무 큰 이미지일경우 작게 조정 함) 21.02.10
댓글목록
등록된 댓글이 없습니다.