【发布时间】:2012-12-07 21:02:16
【问题描述】:
可能重复:
How to select all text in a textbox and copy it to clipboard using JavaScript/jQuery?
Copy text to the client’s clipboard using jQuery
我需要一个 javascript、jquery 函数来复制到剪贴板功能。我知道以下代码,但它仅适用于 IE:
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
我看到一些教程建议一些 swf 文件。我使用了其中一些,例如http://www.steamdev.com/zclip/,但它不起作用。
请提出解决方案。
【问题讨论】:
-
AFAIK 除了 flash 之外没有跨浏览器解决方案。
标签: javascript jquery