Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

조회 수 4403 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

Example no jQuery.


# JAVASCRIPT

function copyToClipboard(elementId) {

  // Create a "hidden" input
  var aux = document.createElement("input");

  // Assign it the value of the specified element
  aux.setAttribute("value", document.getElementById(elementId).innerHTML);

  // Append it to the body
  document.body.appendChild(aux);

  // Highlight its content
  aux.select();

  // Copy the highlighted text
  document.execCommand("copy");

  // Remove it from the body
  document.body.removeChild(aux);

}


# HTML

<p id="p1">P1: I am paragraph 1</p>
<p id="p2">P2: I am a second paragraph</p>
<button onclick="copyToClipboard('p1')">Copy P1</button>
<button onclick="copyToClipboard('p2')">Copy P2</button>
<br/><br/><input type="text" placeholder="Paste here for test" />



[출처] https://stackoverflow.com/questions/22581345/click-button-copy-to-clipboard-using-jquery




?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1141 System/OS [linux] 웹로그분석기(webalizer) 설치 & 팁 hooni 2003.04.23 16016
1140 System/OS [linux] 데스크탑환경(GNOME/KDE) 바꾸기.. hooni 2003.04.23 13259
1139 System/OS [linux] 센드메일 동적릴레이 설치 hooni 2003.04.23 16468
1138 System/OS HTTP 프로토콜 (브라우저와 웹서버 간의 통신) hooni 2003.04.23 50785
1137 Database [mysql] DB->Text, Text->DB 변환 hooni 2003.04.23 13418
1136 System/OS [windows] 패스워드를 잊어먹었을때.. hooni 2003.04.23 18495
1135 System/OS [bios] 시스템 부팅 도중 발생하는 비프음 hooni 2003.04.23 19398
1134 System/OS [unix] SUN Solaris 싱글모드.. ㅡ,.ㅡ; hooni 2003.04.23 13433
1133 System/OS [linux] ProFTPD 타임아웃 설정 hooni 2003.04.23 13955
1132 Develop [css] 스크롤바 안생기게 hooni 2003.04.23 11527
1131 System/OS [unix] 유닉스 csh에서 환경변수 등록 hooni 2003.04.23 12575
1130 System/OS [linux] 쉘 스크립트 (Shell Script) hooni 2003.04.23 13205
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 99 Next
/ 99