如何使用JavaScript复制到剪贴板?

将文本复制到剪贴板的最佳方法是什么?(多浏览器)

我试过了:

functioncopyToClipboard(text){
if(window.clipboardData){//InternetExplorer
window.clipboardData.setData(“Text”,text);
}else{
unsafeWindow.netscape.security.PrivilegeManager.enablePrivilege(“UniversalXPConnect”);
constclipboardClel=Components.classes[“@mozilla.org/widget/clipboardhelper;1"].getService(Components.interfaces.nsIClipboardHelper);
clipboardHelper.copyString(text);
}
}

但在InternetExplorer中,它会出现语法错误。在Firefox中,它说unsafeWindow未定义

没有flash的好技巧:Trello如何访问用户的剪贴板?

转载于:https://stackoverflow.com/questions/400212/how-do-i-copy-to-the-clipboard-in-javascript?page=2&tab=votes