点击按钮复制到剪贴板

16 浏览
0 Comments

点击按钮复制到剪贴板

如何将 div 中的文本复制到剪贴板?我有一个 div,需要添加一个链接,点击链接后可以将文本复制到剪贴板。有解决方案吗?

Lorem Ipsum 是印刷和排版行业的示例文本。自 1500 年以来,Lorem Ipsum 一直是该行业的标准示例文本。 复制文本


点击复制文本后,再按 Ctrl + V,将会粘贴文本。

0
0 Comments

2023年以后,应该使用Clipboard Api来进行复制到剪贴板的操作。下面是一些关于使用Clipboard Api的示例代码:

navigator.clipboard.writeText('text here you want to copy').then(function () {
    alert('It worked! Do a CTRL - V to paste')
}, function () {
    alert('Failure to copy. Check permissions for clipboard')
});

使用Clipboard Api可以与剪贴板进行交互的更多信息,请参考此处

如果使用jQuery,可以在任何HTML元素上添加以下代码来实现复制到剪贴板的功能:

onclick="navigator.clipboard.writeText($(this).text());"

以上是使用Clipboard Api进行复制到剪贴板的方法。

0
0 Comments

点击按钮复制到剪贴板的问题是因为现代浏览器出于安全原因不允许直接通过JavaScript复制到剪贴板。最常见的解决方法是使用Flash功能来复制到剪贴板,该功能只能通过直接用户点击触发。另一种常见的解决方法是将要复制到剪贴板的文本放入输入字段中,将焦点移到该字段,并提示用户按Ctrl + C复制文本。

然而,从2016年开始,大多数浏览器已经具备了通过编程方式将选定的文本复制到剪贴板的功能,使用的方法是document.execCommand("copy"),但仍然需要用户进行特定的操作(如鼠标点击),无法通过定时器等方式进行复制。以下是一个示例代码:

document.getElementById("copyButton").addEventListener("click", function() {
    copyToClipboard(document.getElementById("copyTarget"));
});
function copyToClipboard(elem) {
    var targetId = "_hiddenCopyText_";
    var isInput = elem.tagName === "INPUT" || elem.tagName === "TEXTAREA";
    var origSelectionStart, origSelectionEnd;
    if (isInput) {
        target = elem;
        origSelectionStart = elem.selectionStart;
        origSelectionEnd = elem.selectionEnd;
    } else {
        target = document.getElementById(targetId);
        if (!target) {
            target = document.createElement("textarea");
            target.style.position = "absolute";
            target.style.left = "-9999px";
            target.style.top = "0";
            target.id = targetId;
            document.body.appendChild(target);
        }
        target.textContent = elem.textContent;
    }
    var currentFocus = document.activeElement;
    target.focus();
    target.setSelectionRange(0, target.value.length);
    var succeed;
    try {
        succeed = document.execCommand("copy");
    } catch(e) {
        succeed = false;
    }
    if (currentFocus && typeof currentFocus.focus === "function") {
        currentFocus.focus();
    }
    if (isInput) {
        elem.setSelectionRange(origSelectionStart, origSelectionEnd);
    } else {
        target.textContent = "";
    }
    return succeed;
}

此外,ZeroClipboard是一套用于管理Flash对象进行复制的流行代码。然而,由于Flash只能在安装了Flash的设备上工作,因此不能在移动设备或平板电脑上使用。

对于这个问题和可能的解决方法,还可以在Stack Overflow的相关帖子中找到更多讨论。一些旧版本的Internet Explorer和Firefox曾经有一些非标准的API来访问剪贴板,但它们的现代版本已经弃用了这些方法。

目前,还有一个新的标准努力来解决剪贴板的常见问题,可能需要特定的用户操作,就像Flash解决方案所需要的那样。这个努力在最新版本的Firefox和Chrome中已经部分实现,但尚未得到确认。

值得一提的是,Google Docs似乎以某种方式实现了这一点,当您尝试“共享”文档时,它会自动将链接复制到剪贴板。

总之,虽然现代浏览器不允许直接通过JavaScript复制到剪贴板,但可以通过一些解决方法实现这一功能。但需要注意的是,不同浏览器的支持情况可能会有所不同。

0
0 Comments

点击按钮复制到剪贴板的问题出现的原因是使用了已经被废弃的execCommand方法,该方法在更新到2020年后已经不再推荐使用。尽管它在许多浏览器上仍然可以工作,但由于支持可能会被删除,因此不建议使用。

解决方法是使用另一种方法,即在选择文本后执行"copy"命令,将当前选中的文本复制到剪贴板中。下面是一个示例函数,将传递的元素的内容复制到剪贴板中:

function copyToClipboard(element) {
    var $temp = $("");
    $("body").append($temp);
    $temp.val($(element).text()).select();
    document.execCommand("copy");
    $temp.remove();
}

该方法的工作原理如下:

1. 创建一个临时隐藏的文本字段。

2. 将元素的内容复制到该文本字段中。

3. 选择文本字段的内容。

4. 执行"copy"命令,即`document.execCommand("copy")`。

5. 移除临时文本字段。

需要注意的是,元素的内部文本可能包含空格。因此,如果要将其用于例如密码,可以在上述代码中使用`$(element).text().trim()`来去除空格。

以上是使用jQuery的解决方法。如果要使用纯JavaScript实现,可以使用以下代码:

function copyToClipboard(elementId) {
  var aux = document.createElement("input");
  aux.setAttribute("value", document.getElementById(elementId).innerHTML);
  document.body.appendChild(aux);
  aux.select();
  document.execCommand("copy");
  document.body.removeChild(aux);
}

该方法与前面的方法类似,但使用纯JavaScript实现。

需要注意的是,不是所有的浏览器都支持该功能。在主要浏览器中可以使用该功能的版本如下:

- Chrome 43

- Internet Explorer 10

- Firefox 41

- Safari 10

最后,还提供了一个解决方法,可以保留文本格式的复制。该方法使用可编辑的div来复制文本,并使用类似的方式执行execCommand。具体代码如下:

function copy(element_id){
  var aux = document.createElement("div");
  aux.setAttribute("contentEditable", true);
  aux.innerHTML = document.getElementById(element_id).innerHTML;
  aux.setAttribute("onfocus", "document.execCommand('selectAll',false,null)"); 
  document.body.appendChild(aux);
  aux.focus();
  document.execCommand("copy");
  document.body.removeChild(aux);
}

以上是使用纯JavaScript的解决方法。如果要使用jQuery,可以使用以下代码:

function copy(selector){
  var $temp = $("
"); $("body").append($temp); $temp.attr("contenteditable", true) .html($(selector).html()).select() .on("focus", function() { document.execCommand('selectAll',false,null); }) .focus(); document.execCommand("copy"); $temp.remove(); }

需要注意的是,这些方法只能在特定事件(例如点击)之后立即使用。如果在ajax回调中运行该代码,可能不起作用。

总之,上述方法提供了解决复制到剪贴板的问题的多种解决方案。

0