“Jak zrobić pole kopii w HTML” Kod odpowiedzi

Skopiuj tekst do JQuery Schoward

function copyToClipboard(element) {
 var $temp = $("<input>");
 $("body").append($temp);
 $temp.val($(element).html()).select();
 document.execCommand("copy");
 $temp.remove();
}
Witness

JS Skopiuj tekst do schowka

function copy() {
  var copyText = document.querySelector("#input");
  copyText.select();
  document.execCommand("copy");
}

document.querySelector("#copy").addEventListener("click", copy);
Bald Eagle

Kopia JavaScript do schowka

$(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

Jak zrobić pole kopii w HTML

<head>
  <link rel="stylesheet" href="./style.css">
  <link rel="stylesheet" href="https://drive.google.com/uc?id=1xQXEBGOv_qvIEqi5RDzCbDQOieLqFuCO">


<div class="frame">
 <a href="https://sumo404.blogspot.com/"><button class="custom-btn btn-5">Read More<div class="dot"></div></button></a>
  
</div>
Helpless Hedgehog

Odpowiedzi podobne do “Jak zrobić pole kopii w HTML”

Pytania podobne do “Jak zrobić pole kopii w HTML”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu