Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

Views 1169 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
11 PPT [ppt] iOS 플라랩#02(2015.03.19) 발표 자료 file hooni 2015.04.24 898
10 PPT [ppt] iOS 플라랩#03(2015.04.27) 발표 자료 file hooni 2015.04.24 1057
9 PPT [ppt] Equation Solving 발표 자료 (@AjaxUI랩 밋업데이 2012.02.28) file hooni 2015.07.22 906
8 PPT [ppt] Information Security 발표 자료 (@Team Study 2012.11.15) file hooni 2015.07.22 879
7 PPT [ppt] Macro for board game 발표자료 (@Team Study 2013.01.18) 1 file hooni 2015.07.22 1268
6 PPT [ppt] OCB기술개발팀 OJT 자료 file hooni 2015.11.13 1151
5 PPT [ppt] 전자금융보안론 발표/설치 자료 file hooni 2016.05.03 1317
4 PPT 삼성페이(Samsung Pay) 구조 file hooni 2016.09.09 923
3 PPT [ppt] 보안경제학 발표자료 secret hooni 2016.11.11 5
2 PPT [ppt] 정보보호관리 발표내용 file hooni 2016.11.30 1072
1 PPT [ppt] 정보보호관리 발표내용 #2 file hooni 2016.12.08 1062
Board Pagination Prev 1 2 3 Next
/ 3