![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/dUr7gP/btri3VHL1kW/62qkluNKdHVKvfKarENR4k/img.png)
Copy text, image to clipboard in javascript 웹 개발에서 종종 사용되는 텍스트, 이미지를 클립보드에 복사하는 방법을 기록해보았다. Copy Text const tempArea = document.createElement("textarea"); // 임시 element 생성 document.body.appendChild(tempArea); tempArea.value = $("#copyTextId").val(); // 복사할 영역의 값 저장 tempArea.select(); document.execCommand("copy"); document.body.removeChild(tempArea); Copy Image 이렇게 간단하게 이미지를 클립보드에 복사하는 코드가 많이 없었는..
Web
2021. 10. 24. 00:43