Contents

Develop
2018.04.05 09:57

[js] Click button copy to clipboard

조회 수 1301 댓글 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. [js] AngularJS 란?

    Date2015.11.26 CategoryDevelop Byhooni Views1034
    Read More
  2. [js] AngularJS를 소개합니다.

    Date2014.01.06 CategoryDevelop Byhooni Views13053
    Read More
  3. [js] Array.splice() 설명

    Date2014.04.24 CategoryDevelop Byhooni Views3064
    Read More
  4. [js] Click button copy to clipboard

    Date2018.04.05 CategoryDevelop Byhooni Views1301
    Read More
  5. [js] Closure를 이용해 캡슐화..

    Date2013.12.16 CategoryDevelop Byhooni Views9621
    Read More
  6. [js] e.stopPropagation() VS e.preventDefault ()

    Date2015.04.14 CategoryDevelop Byhooni Views917
    Read More
  7. [js] get방식, url이후 모두 그대로 읽어오기..

    Date2013.04.23 CategoryDevelop Byhooni Views6868
    Read More
  8. [js] IE에서 인쇄 설정 팁

    Date2013.04.23 CategoryDevelop Byhooni Views10922
    Read More
  9. [js] Javascript로 만든 포트리스 (2010)

    Date2017.03.03 CategoryDevelop Byhooni Views2820
    Read More
  10. [js] jQjuery $ 활용

    Date2013.12.17 CategoryDevelop Byhooni Views8906
    Read More
  11. [js] jQuery 배열 루프(each)

    Date2013.12.17 CategoryDevelop Byhooni Views10025
    Read More
  12. [js] jQuery plugin 요약

    Date2013.12.20 CategoryDevelop Byhooni Views10751
    Read More
Board Pagination Prev 1 ... 52 53 54 55 56 57 58 59 60 61 ... 98 Next
/ 98