可能重複:
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複製到剪貼板使用jQuery在所有瀏覽器
我需要一個javascript,jQuery的功能複製到剪貼板功能。我知道下面的代碼,但它僅在IE瀏覽器的工作原理:
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
我看到一些教程,這是建議一些SWF文件。我使用了其中的一些像http://www.steamdev.com/zclip/,但它不起作用。
請建議解決方案。
AFAIK除了Flash以外沒有跨瀏覽器的解決方案。 –