如何使用 javaScript 将一些文本放入剪贴板?

How to put some text to clipboard using javaScript?

我想让用户能够将一些内容复制到剪贴板。我尝试了以下。

var textArea = document.createElement('textarea');
textArea.textContent = response['file_content'];
document.body.appendChild(textArea);

 var selection = document.getSelection();
 var range = document .createRange();
 range.selectNode(textArea)
 selection.removeAllRanges();
 selection.addRange(range);

 if(document.execCommand('copy'))
 {
     console.log('Template copied to clipboard');
 }else {
     console.log('Copying Failed');
 }

 selection.removeAllRanges();
 document.body.removeChild(textArea)

可惜

document.execCommand('copy')

在 Chrome 68 和 Mozilla Firefox 60 中总是返回 false。它在 IE 11 中似乎工作正常。我已经在 SO 上解决了很多类似的问题,但这并不是全部为我工作。我不想使用闪光灯。

我在我的项目中使用了以下代码..它对我有用..

Element

<a rel="tooltip" data-placement="top" title="Copy code" class="copytext-btn copyText" href="javascript:void(0);"><i class="code-file-icn"></i></a>

ClickEvent:

jQuery(".copyText").click(function(e)
{
    e.preventDefault();
    copyTextToClipboard(jQuery('.GeneratedText').text());
});

Function:

function copyTextToClipboard(text) 
{
    var textArea = document.createElement("textarea");
    textArea.value = text;
    document.body.appendChild(textArea);
    textArea.select();
    try {
        var successful = document.execCommand('copy');
        if(successful)
        {
            // SuccessCode

        }
        var msg = successful ? 'successful' : 'unsuccessful';
        console.log('Copying text command was ' + msg);
    } 
    catch (err) 
    {
        console.log('Oops, unable to copy');
    }
}