@kil2016

Как копировать текст js?

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

Нужно задать текст в js который нужно скопировать и при нажатии на кнопку он копировался в буфер обмена ?
  • Вопрос задан
  • 1857 просмотров
Пригласить эксперта
Ответы на вопрос 1
LinkVP
@LinkVP
Frontend, React, React Native, Flutter
Step 1) Add HTML:
<!-- The text field -->
<input type="text" value="Hello World" id="myInput">

<!-- The button used to copy the text -->
<button onclick="myFunction()">Copy text</button>


Step 2) Add JavaScript:
function myFunction() {
  /* Get the text field */
  var copyText = document.getElementById("myInput");

  /* Select the text field */
  copyText.select();
  copyText.setSelectionRange(0, 99999); /*For mobile devices*/

/* Copy the text inside the text field */
  document.execCommand("copy");

  /* Alert the copied text */
  alert("Copied the text: " + copyText.value);
}


Источник
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы