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.
我有一个 textarea 标签和一个按钮。我想要的是当我单击按钮时,该文本区域中的文本将被复制到我的剪贴板中。
我在 Chrome 扩展程序中使用它。
感谢您提供任何帮助!
要复制文本...
function CopyToClipboard(text) { Copied = text.createTextRange(); Copied.execCommand("Copy"); }
要获取文本...
textareaObject.value="text"