Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

조회 수 1181 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
69 System/OS [linux] vi 편집기 간단한 명령과 환경설정 hooni 2003.04.23 11360
68 Develop [unix] 쉘 스크립트 예제 모음 hooni 2003.04.23 14949
67 Develop [linux] 쉘 스크립트를 이용한 BBS hooni 2003.04.23 10048
66 Develop [c] pcap을 이용한 패킷 분석 ㅎㅎ hooni 2003.04.23 10210
65 Develop [js] 스크롤을 포함한 마우스 위치 찾는 코드 hooni 2003.04.23 8505
64 Develop [js] 쿠키(cookie)에 대한 설명과 예제.. hooni 2003.04.23 8321
63 Develop [php] URL/URI 관련 환경변수 hooni 2003.04.23 9163
62 Develop [js] 자바스크립트로 응용프로그램 실행 ㅎㅎ hooni 2003.04.23 9812
61 Develop [php] 쉘에서 실행할 때 인수(파라미터) 받기.. hooni 2003.04.23 11595
60 Develop [js] 자바스크립트 이벤트 핸들.. hooni 2003.04.23 7908
59 Develop [css] 화면 스크롤 제어 ㅋㅋ hooni 2003.04.23 8681
58 Develop [php] 배열 관련 함수 설명 ㅎㅎ hooni 2003.04.23 11748
Board Pagination Prev 1 ... 88 89 90 91 92 93 94 95 96 97 98 Next
/ 98