textarea안에 내용을 버튼클릭으로 줄바꿈을 삭제합니다 > script

본문 바로가기

script

textarea안에 내용을 버튼클릭으로 줄바꿈을 삭제합니다

작성일 07-08-11 20:54

페이지 정보

작성자서방님 조회 370회 댓글 1건

본문

<HTML>
<HEAD>
    <TITLE>BLUE-B</TITLE>
</head>
<body>

<form name=exf1>
<textarea name=ta rows=5 cols=10 >
aaa
bbbb
cc
d
eee
fffff
</textarea><BR>
<input type=button value="Remove Newlines" onclick=rn()>
</textarea>
</form>

<script>
function rn() {
  var _s = document.exf1.ta.value;
  var _t = "";
  for (_i=0;_i<_s.length;_i++) {
    if (_s.charCodeAt(_i) != 13 &&
        _s.charCodeAt(_i) != 10)
      _t += _s.charAt(_i);
  }
  document.exf1.ta.value=_t;
}
</script>

</body>
</html>

댓글목록

등록된 댓글이 없습니다.

게시물 검색
Copyright © 서방님.kr All rights reserved.
PC 버전으로 보기