Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

조회 수 4403 댓글 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. ZBar 라이브러리를 이용한 바코드 스캔 앱 개발하기

  2. [matlab] 정보은닉 스테가노그래피(Steganography) 수업

  3. [js] Text 값을 클립보드에 복사하기

  4. [c] RSA 암호화 구현(gmp 라이브러리 활용)

  5. [php] 한글 문자열 자르기 (utf-8)

  6. [android] Android N requires the IDE to be running with Java 1.8 or later 오류

  7. [android] 레이아웃 사이즈 변경 (동적; programmatically)

  8. [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙)

  9. [ios] @property의 속성 (strong, weak, copy) 사용 경우

  10. [kotlin] 코틀린 안드로이드 앱 버전/빌드 정보

  11. 캘리포니아 운전면허 족보

  12. [ios] 상위 ViewController 가져오기

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 ... 71 Next
/ 71