웹문서 공부2018. 1. 6. 01:22
   

아래 버전에 해당하는 브라우저들은 플래시 없이 클립보드에 자바스크립만으로 복사가 가능합니다.


 Chrome 43+, Opera 29+ and IE 10+


1
2
3
4
5
6
7
8
9
<script>
function copy() {
  var copyText = document.getElementById("myInput");
  copyText.select();
  document.execCommand("Copy");
  alert("Copied the text: " + copyText.value);
}
</script>
<input type="text" id="myInput"/><input type="button" value="복사" onclick="copy();"/>



출처: http://goni9071.tistory.com/entry/자바스크립트-클립보드에-복사하기-플래시없이-javascript-copy-clipboard-without-flash?category=718769 [고니의꿈]


Posted by DaumTistory