“Copiar el valor del botón a la función del portapapeles JavaScript” Código de respuesta

Copiar el valor del botón a la función del portapapeles JavaScript

//U need to have a button with the id the same as its name because it is going to be sent to the clipborad.
/*Like this: */
<button onClick="SelfCopy(this.id)"  id="1">1</button>
<button onClick="SelfCopy(this.id)"  id="2">2</button>
<button onClick="SelfCopy(this.id)"  id="3">3</button>

function SelfCopy(copyText)
  {
      navigator.clipboard.writeText(copyText);
      alert("You just copied this: (" + copyText + ").");
  }
Different Dog

Copia de JavaScript al portapapeles

$(document).ready(function(){
	$("#ewefmwefmp").click(function(){
    //alert()
      var copyText = document.getElementById("myInput");
      copyText.select();
      copyText.setSelectionRange(0, 99999)
      document.execCommand("copy");
      alert("Copied the text: " + copyText.value);
    
    });
});
A D Bhowmick

portapapeles de copia de JavaScript

<a href="' + artworkUrl + '" onclick="copyURI(event)">Copy cover URL</a>
Gifted Gharial

Respuestas similares a “Copiar el valor del botón a la función del portapapeles JavaScript”

Preguntas similares a “Copiar el valor del botón a la función del portapapeles JavaScript”

Más respuestas relacionadas con “Copiar el valor del botón a la función del portapapeles JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código