Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

조회 수 4393 댓글 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




?

  1. [jsp] 정적/동적(차트생성) 이미지 전달

  2. [jsp] 초간단한 include 구문 예제..

  3. [jsp] 페이지에 한글이 정상적으로 보이지 않을 때..

  4. [jsp][php] LDAP 프로그래밍..

  5. [jsp][php] 간단한 강좌 자료..

  6. [js] 2048 예쁘게 만들고 있는거.. ㅋㄷ

  7. [js] 2차 잉여.. (Quadratic reciprocity) 계산..

  8. [js] ajax를 이용해 외부문서 불러오기..

  9. [js] AngularJS 란?

  10. [js] AngularJS를 소개합니다.

  11. [js] Array.splice() 설명

  12. [js] Click button copy to clipboard

Board Pagination Prev 1 ... 46 47 48 49 50 51 52 53 54 55 ... 71 Next
/ 71