<SCRIPT LANGUAGE="JavaScript"> <!-- function copyit(theField) { var tempval=eval("document."+theField) tempval.focus() tempval.select() therange=tempval.createTextRange() therange.execCommand("Copy") alert('복사완료'); } //--> </script> <!-- 폼과 textarea의 name는 아무거나 해주셔도 되지만, 지우시면 안됩니다. 그리고 바꾼 name를 꼭 onclick에 적용시켜 주시기 바랍니다. //--> <form name="happy"> <input type="button" value="눌러보세요..." onclick="copyit('happy.select1')"> <br><br> <textarea name="select1" rows="5" cols="50"> 위 버튼을 누르면 버튼 누름과 동시에 클립보드에 TEXTAREA내용이 저장됩니다. </textarea> </form> |
++
'컴퓨터 > 언어,프로그래밍' 카테고리의 다른 글
채팅프로그램 Server (0) | 2009.10.08 |
---|---|
자바 플래시 XML 채팅 서버 (0) | 2009.10.08 |
[스크랩] PHP에서 자바스크립트 변수넘기기 2가지방법 정리 (0) | 2009.09.28 |
DIV 레이어 속성 (0) | 2009.09.21 |
재귀함수 사용 예제 (0) | 2009.07.31 |