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 Develop [c] 기막힌 정렬 코드 ㅋㄷ file hooni 2015.10.13 816
68 Develop [js] e.stopPropagation() VS e.preventDefault () file hooni 2015.04.14 813
67 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 812
66 Algorithm OCB5 Injection 앗싸뵹! ㅋㅋ file hooni 2014.07.01 808
65 Develop [io] Apple Watch, Today Extension 앱ID 설정 hooni 2016.04.20 803
64 System/OS [macos] How to Fix ‘You Shut Down Your Computer Because of a Problem’ file hooni 2022.06.01 796
63 Develop [linux] CentOS Apache 웹서버에 HTTPS 적용 hooni 2015.10.23 792
62 Develop [Android Error] The number of method references in a .dex file cannot exceed 64K hooni 2016.11.10 762
61 Develop [c] 파일명 또는 특정 패턴을 적용 file hooni 2016.08.03 761
60 Develop 리팩토링 계획안 file hooni 2017.05.15 757
59 Develop [ios] 앱에서 설정화면 호출하기 hooni 2015.04.07 750
58 Develop [ios][swift] 초간단 TableView 샘플 file hooni 2016.06.27 748
Board Pagination Prev 1 ... 88 89 90 91 92 93 94 95 96 97 98 Next
/ 98