“JavaScript Text в буфер обмена” Ответ

JavaScript Text в буфер обмена

function copyToClipboard(text) {
   const elem = document.createElement('textarea');
   elem.value = text;
   document.body.appendChild(elem);
   elem.select();
   document.execCommand('copy');
   document.body.removeChild(elem);
}
Dennis "Awesome" Rosenbaum

JS копировать текст в буфер обмена

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

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

JavaScript Получите содержимое буфера обмена

#note that this will prompt the user to allow acces to clipboard
navigator.clipboard.readText().then(text => {
    console.log('Clipboard content is: ', text);
  })
  .catch(err => {
    console.error('Failed to read clipboard contents: ', err);
});
Friendly Hawk

JS -копия Span Text в буфер обмена

document.getElementById("cp_btn").addEventListener("click", copy_password);

function copy_password() {
    var copyText = document.getElementById("pwd_spn");
    var textArea = document.createElement("textarea");
    textArea.value = copyText.textContent;
    document.body.appendChild(textArea);
    textArea.select();
    document.execCommand("Copy");
    textArea.remove();
}
Bald Eagle

javaScript копия в буфер обмена

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

Ответы похожие на “JavaScript Text в буфер обмена”

Вопросы похожие на “JavaScript Text в буфер обмена”

Больше похожих ответов на “JavaScript Text в буфер обмена” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования