<form name='form'>
<textarea name="content" cols="20" rows="7" style="overflow:auto;border:0px;width:160px;font-size:9pt;background-color:E5F1FB;" onKeydown="javascript:getLength(content.value)" onKeyUp="javascript:getLength(content.value)"></textarea>
<input type="text" size="3" style="border:0px;background-color:DBEBF8;text-align:right;width:91px;height:20px;color:blue;" NAME="txtlen" value="0" readonly><input type="text" size="10" value="/ 80 Byte" style="border:0px;background-color:DBEBF8;height:20px;color:666666;">
</form>
<script language="javascript">
function getLength(str)
{
var max_byte = str.length+(escape(str)+"%u").match(/%u/g).length-1;
var str_len = document.form.content.value.length;
if (max_byte >= 80)
{
alert("한글 2글자, 영문 1글자가 80Byte를 넘을수 없습니다.\r\n더이살 쓸수 없습니다.")
document.form.content.value = document.form.content.value.substring(0, str_len-1);
document.form.txtlen.value = max_byte;
return;
}
else
{
document.form.txtlen.value = max_byte;
}
}
</script>
asp에 json을 적용할때 필요한 파일 (0) | 2014.05.29 |
---|---|
(asp)로그인이 필요한페이지에서 이전페이지 주소값알아내기 (0) | 2008.01.26 |
이미지 및 프린터 버튼 못하게 하는 태그 (0) | 2007.08.04 |
Win2003에서 업로드, 다운로드 제한 푸는 법(IIS6) (0) | 2007.08.04 |
asp로 RSS 구현하기 (0) | 2007.08.04 |