将文本复制到剪贴板的最佳方法是什么?(多浏览器)
我试过了:
function copyToClipboard(text) {
if (window.clipboardData) { // Internet Explorer
window.clipboardData.setData("Text", text);
} else {
unsafeWindow.netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
const clipboardHelper = Components.classes["@mozilla.org/widget/clipboardhelper;1"].getService(Components.interfaces.nsIClipboardHelper);
clipboardHelper.copyString(text);
}
}
但是在Internet Explorer中,它会给出语法错误。在Firefox中,显示为unsafeWindow is not defined
。
一个没有Flash的好窍门:Trello如何访问用户的剪贴板?
I have used clipboard.js.
We can get it on npm:
And also on Bower
Usage & examples are at https://zenorocha.github.io/clipboard.js/.