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
번호 분류 제목 글쓴이 날짜 조회 수
243 Develop [jsp] 정적/동적(차트생성) 이미지 전달 file hooni 2003.04.23 8688
242 Develop [jsp] 초간단한 include 구문 예제.. file hooni 2013.04.23 8228
241 Develop [jsp] 페이지에 한글이 정상적으로 보이지 않을 때.. hooni 2013.04.23 9271
240 Develop [jsp][php] LDAP 프로그래밍.. file hooni 2003.04.23 8538
239 Develop [jsp][php] 간단한 강좌 자료.. file hooni 2003.04.23 9517
238 Develop [js] 2048 예쁘게 만들고 있는거.. ㅋㄷ secret hooni 2015.01.30 0
237 Develop [js] 2차 잉여.. (Quadratic reciprocity) 계산.. file hooni 2013.04.23 8258
236 Develop [js] ajax를 이용해 외부문서 불러오기.. hooni 2013.04.23 8041
235 Develop [js] AngularJS 란? file hooni 2015.11.26 2189
234 Develop [js] AngularJS를 소개합니다. file hooni 2014.01.06 13848
233 Develop [js] Array.splice() 설명 hooni 2014.04.24 4139
» Develop [js] Click button copy to clipboard hooni 2018.04.05 4403
Board Pagination Prev 1 ... 46 47 48 49 50 51 52 53 54 55 ... 71 Next
/ 71