2018-04-24から1日間の記事一覧

Javascriptでクリップボードにテキストコピーする

TL;DR const text = 'コピーするテキスト'; const textarea = document.createElement('textarea'); textarea.style.position = 'fixed'; textarea.style.opacity = 0; textarea.value = text; document.body.appendChild(textarea); textarea.select(); doc…