텍스트 복사하는 스크립트

|

<html>
<head>
<style type="text/css">
div { width:300;height:200;border:solid 1 black;font-size:12; }
</style>
<script type="text/javascript">
function _copy() {
  var txt=document.body.createTextRange();
  txt.moveToElementText(document.all.copyarea);
  txt.select();
  txt.execCommand("copy");
  document.selection.empty();

}
</script>
</head>
<body>
<div id=copyarea>
<pre>
학교종이땡땡땡
</pre>
</div>
<br>
<input type="button" value="copy" onclick="_copy()">
<br>
<h5>테스트영역입니다(붙여넣기하세요)</h5>
<div id=pastearea contenteditable=true></div>
</body>
</html>

크리에이티브 커먼즈 라이선스
Creative Commons License
Trackback 0 And Comment 0
prev | 1 ... | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 ... | 297 | next