gpt4 book ai didi

javascript - 如何复制我的网页中显示的代码并嵌入其中的按钮

转载 作者:行者123 更新时间:2023-12-02 23:30:53 28 4
gpt4 key购买 nike

function copy() {
var x= document.getElementById("content");
x.select();
document.execCommand('copy');
window.getSelection().removeAllRanges();
}

这是我用来选择和复制输入内容的js代码。

如果我想在网页上添加一个按钮来选择某个 div 并将显示的代码复制到剪贴板中,该怎么办。

最佳答案

尝试仅使用虚拟输入法:

function copy() {      
const text = document.getElementById("copyDiv").innerText;
const elem = document.createElement("input");
document.body.appendChild(elem);
elem.value = text;
elem.select();
document.execCommand("copy");
document.body.removeChild(elem);
document.write("Copied to clipboard!");
}
<div id="copyDiv">Text to be copied</div>
<button onclick="copy()">Copy text</button>

关于javascript - 如何复制我的网页中显示的代码并嵌入其中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56512270/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com