“Botón Código de copia en JS” 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

JavaScript Haga clic para copiar

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

Botón Código de copia en JS

var
 i 
=
34
;
copy
ankit kumar

Respuestas similares a “Botón Código de copia en JS”

Preguntas similares a “Botón Código de copia en JS”

Más respuestas relacionadas con “Botón Código de copia en JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código