“JS Kopie Absatz Onclick” Code-Antworten

JavaScript Klicken Sie Klicken, um zu kopieren

function copyToClipboard(value) {
  navigator.clipboard.writeText(value)
}
Payer of the Iron Price

Kopieren Sie den Text Onclick

const span = document.querySelector("span");

span.onclick = function() {
  document.execCommand("copy");
}

span.addEventListener("copy", function(event) {
  event.preventDefault();
  if (event.clipboardData) {
    event.clipboardData.setData("text/plain", span.textContent);
    console.log(event.clipboardData.getData("text"))
  }
});
Damon

JS Kopie Absatz Onclick

var copy = document.querySelectorAll(".copy"); 

for (const copied of copy) { 
  copied.onclick = function() { 
    document.execCommand("copy"); 
  };  
  copied.addEventListener("copy", function(event) { 
    event.preventDefault(); 
    if (event.clipboardData) { 
      event.clipboardData.setData("text/plain", copied.textContent);
      console.log(event.clipboardData.getData("text"))
    };
  });
};
Borma

Ähnliche Antworten wie “JS Kopie Absatz Onclick”

Fragen ähnlich wie “JS Kopie Absatz Onclick”

Weitere verwandte Antworten zu “JS Kopie Absatz Onclick” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen