Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

조회 수 1165 댓글 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][php] LDAP 프로그래밍..

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

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

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

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

  7. [js] AngularJS 란?

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

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

  10. [js] Click button copy to clipboard

  11. [js] Closure를 이용해 캡슐화..

  12. [js] e.stopPropagation() VS e.preventDefault ()

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