Html & Script

글자수 체크하기

페이지 정보

본문

<form name='form'>
<b>글자: </b><input type='text' name='t1' onKeyUp='char_count(this.form)'> 
<br><b>글자수: </b><input type='text' name='t2' value='0' readonly="readonly">
</form>
<script language='javascript'>
function char_count(form)
{
 form.t2.value=form.t1.value.length;
}
</script>

관련자료

등록된 댓글이 없습니다.
Today's proverb
조그만 친절이, 한마디 사랑의 말이 저위의 하늘나라처럼 이 땅을 즐거운 곳으로 만든다.