“Botão Código de Copiar em JS” Respostas de código

copiar o valor do botão para a função da área de transferência 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 Clique para copiar

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

Botão Código de Copiar em JS

var
 i 
=
34
;
copy
ankit kumar

Respostas semelhantes a “Botão Código de Copiar em JS”

Perguntas semelhantes a “Botão Código de Copiar em JS”

Mais respostas relacionadas para “Botão Código de Copiar em JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código