Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

Views 4393 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
39 Develop [c#] mfc 기반의 웹서비스 서버/클라이언트 샘플과 예제 소스 secret hooni 2013.04.23 2073
38 Develop [ios] Thread Loop 내에서 UI 업데이트 방법 hooni 2015.01.03 2069
37 Develop [js] 스크롤 이벤트 막기 hooni 2015.04.14 2065
36 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 2061
35 Develop [android] AlertDialog 메시지 창 띄우기 hooni 2015.07.09 2048
34 Develop [ios] NSData to NSString (NSString to NSData) hooni 2015.07.21 2022
33 Develop [c] 이진 탐색 두 가지 코드 (재귀/반복) file hooni 2015.06.26 2021
32 Develop [ios] SBCampanion App 초안 file hooni 2015.09.16 2006
31 Develop [ios] UIWebView에서 로컬에 있는 html 파일 불러오기 hooni 2015.02.10 1998
30 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 1893
29 Develop [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ hooni 2015.06.26 1851
28 Develop [ios] 문자열로 함수 실행하기 (eval 함수처럼) hooni 2015.02.10 1833
Board Pagination Prev 1 ... 62 63 64 65 66 67 68 69 70 71 Next
/ 71