Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキストエリアタグがあり、ボタンがあります。私が欲しいのは、ボタンをクリックすると、そのテキストエリアのテキストがクリップボードにコピーされることです。
これをChrome拡張機能で使用しています。
助けてくれてありがとう!
テキストをコピーするには ...
function CopyToClipboard(text) { Copied = text.createTextRange(); Copied.execCommand("Copy"); }
テキストを取得するには...
textareaObject.value="text"