Develop
2018.04.05 09:57

[js] Click button copy to clipboard

Views 1169 Votes 0 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
1109 Develop [android] ArrayAdapter 테스트 파일 ㅎㅎ hooni 2013.04.23 45241
1108 Develop [android] ArrayAdapter를 이용하여 출력하기 hooni 2013.04.23 47339
1107 Develop [android] Calling activity function from separate class hooni 2016.11.15 1155
1106 Develop [android] Canvas를 이용해 이미지 확대/축소 하기 hooni 2013.04.23 60741
1105 Develop [android] dp, px 서로 변환 hooni 2016.10.21 3373
1104 Develop [android] GCM 사용하기 1 (GCM 서비스 신청하기) file hooni 2013.07.06 51355
1103 Develop [android] How can I place app icon on launcher home screen? hooni 2016.11.15 1261
1102 Develop [android] keytool을 사용하여 키스토어 생성 hooni 2013.04.23 69511
1101 Develop [android] ListView+ArrayAdapter 테스트 hooni 2013.04.23 43899
1100 Develop [android] N-Puzzle 게임 file hooni 2015.07.09 865
1099 Develop [android] SQLiteOpenHelper를 이용한 DBManager hooni 2017.06.14 2060
1098 Develop [android] SurfaceView를 이용한 애니메이션 ㅎㅎ file hooni 2013.04.23 57704
1097 PPT [android] XML파서(XMLParser)의 종류와 성능 비교에 대한 발표 자료 file hooni 2013.04.23 75640
1096 Develop [android] [번역] 안드로이드 Android Cloud to Device Messaging(C2DM) hooni 2013.04.23 20421
1095 Develop [android] 가속도 센서를 이용한 흔듦(Shake) 감지 file hooni 2014.11.04 1898
1094 Develop [android] 간단한 SQLIite 예제 hooni 2017.06.14 1322
Board Pagination Prev 1 3 4 5 6 7 ... 74 Next
/ 74