Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

조회 수 4398 댓글 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. [ubuntu] 우분투 18.04에 PHP5 설치하기

    Date2020.11.14 CategoryDevelop Byhooni Views3271
    Read More
  2. [mac] OS X 요세미티 사용자가 많이 겪는 버그와 몇몇 불편사항

    Date2015.01.04 CategorySystem/OS Byhooni Views3278
    Read More
  3. [c#] 툴바 소스.. 개인적으로 만드는거..

    Date2013.04.23 CategoryDevelop Byhooni Views3304
    Read More
  4. [ios] APNS, Remote Push 사용자가 수신을 동의했는지 확인하기

    Date2018.10.19 CategoryDevelop Byhooni Views3333
    Read More
  5. [mac] VirtualBox 실행 스크립트와 bash_profile 설정

    Date2020.07.08 CategorySystem/OS Byhooni Views3342
    Read More
  6. Ubuntu Desktop RDP Setup - 24.04 LTS

    Date2024.10.16 CategorySystem/OS Byhooni Views3343
    Read More
  7. [펌] 마이크로서비스, 모노리포, SRE, ... 덮어놓고 구글 따라하면 안 되는 기술들

    Date2020.10.15 CategorySystem/OS Byhooni Views3351
    Read More
  8. RSVP 란?

    Date2017.11.22 CategoryEtc Byhooni Views3382
    Read More
  9. [ios] GMT Date와 Local Date 변환하기

    Date2015.04.07 CategoryDevelop Byhooni Views3385
    Read More
  10. 개인적으로 쓰고 있는 zshrc 파일

    Date2022.02.25 CategorySystem/OS Byhooni Views3403
    Read More
  11. [ios] 카테고리 확장 메소드를 찾지 못하는 경우

    Date2014.08.08 CategoryDevelop Byhooni Views3460
    Read More
  12. [js] 문자열에서 숫자만 걸러내기 (jQuery 안쓰고 정규표현식)

    Date2017.12.14 CategoryDevelop Byhooni Views3484
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 ... 99 Next
/ 99