[Script] 폼 크기 자동으로 늘였다 줄였다..
2003.09.23 12:15
165
https://eond.com/20442
으짠이님께서 phpschool. 팁게시판에서 미니위니에 가져온 걸 다시 이 곳에 포스팅~ ^^;

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
</head>

<body>
<textarea name="textarea" scol cols="50" rows="5" onKeyDown="setLine( this )"></textarea>

<script language="javascript">
       function setLine( txa ){
              line = 5 //기본 줄 수
      
              new_line = txa.value.split( "n" ).length + 1;
              if( new_line < line ) new_line = line;

              txa.rows = new_line;
       }

</script>
</body>
</html>

라이믹스는 이온디와 함께

닫기

마이페이지

로그인을 해주세요