Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

Views 1177 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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
No. Category Subject Author Date Views
9 Algorithm OCB5 Injection 앗싸뵹! ㅋㅋ file hooni 2014.07.01 804
8 Algorithm 러시아 페인트공 알고리즘에 대해.. hooni 2013.04.23 22897
7 Algorithm 디피헬만(Diffie-Hellman) 초간단 개념.. hooni 2013.04.23 81022
6 Algorithm 암호 알고리즘 및 프로토콜의 이해.. file hooni 2013.04.23 17210
5 Algorithm Polynomial time 이란? ㅋㅋ hooni 2013.04.23 22691
4 Algorithm [security] 블럭 암호에 대해서.. hooni 2013.04.23 17121
3 Algorithm 스터디 자료, 암호화에 대해서.. 나중에 볼 ppt.. file hooni 2013.04.23 13374
2 Algorithm [security] RSA 암호화 설명과 예.. hooni 2013.04.23 16616
1 Algorithm [algorithm] Greedy (탐욕 기법) hooni 2003.04.23 15108
Board Pagination Prev 1 Next
/ 1