[VanillaJS]クリップボードのコピー
html
<textarea id="text"></textarea><br>
<button id="copy">복사</button>
javascriptdocument.getElementById("copy").onclick = () => {
const text = document.getElementById("text")
text.select(); /* 텍스트 선택 */
document.execCommand("copy")
}
document.execCommand
ドキュメントの編集可能なセクションのコマンドを選択して実行copy
:コピーReference
この問題について([VanillaJS]クリップボードのコピー), 我々は、より多くの情報をここで見つけました https://velog.io/@tjdgus3160/VanillaJS-클립보드-복사テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol