I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) 자바스크립트 클립보드로 복사하기

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2019. 8. 21. 23:06

반응형
JAVASCRIPT
1
2
3
4
5
6
7
8
<script>
    function test() {
        var copyText = document.getElementById("(아이디명)");
        copyText.select();
        document.execCommand("Copy");
        alert("복사되었습니다.")
    }
</script>
예제 소스
1
2
3
4
5
6
7
8
9
10
11
<input type="text" id="copy_test">
<button onclick="test()">복사하기</button>
  
<script>
    function test() {
        var copyText = document.getElementById("copy_test");
        copyText.select();
        document.execCommand("Copy");
        alert("복사되었습니다.")
    }
</script>
구현 예시
반응형