gpt4 book ai didi

javascript - js复制功能在html中不起作用

转载 作者:行者123 更新时间:2023-11-28 14:40:46 25 4
gpt4 key购买 nike

我试图在我的 html 页面上获取复制按钮,但它不起作用 - 在 Chrome 控制台中它什么也没说明,它只是不会复制文本。

这是我的 html:

<!doctype html>
<div class="ipDiv tk-saffran">
<div class="ipText">
<h2 id="ip">play.MineGlade.net</h2>
</div>
<div class="copyButton">
<button onclick="copyIp()">Copy IP</button>
<script>
function copyIp() {
var copyText = document.getElementById("ip");
copyText.select;
document.execCommand("Copy");
}
</script>
</div>
</div>

如何解决这个问题?

最佳答案

这是简单易用的方法进行复制,请查看此更新的代码

function copyIp()
{
window.getSelection().selectAllChildren(document.getElementById("ip"));
document.execCommand("Copy");
}
<div class="ipDiv tk-saffran">
<div class="ipText">
<h2 id="ip">play.MineGlade.net</h2>
</div>
<div class="copyButton">
<button onclick="copyIp()">Copy IP</button>

</div>
</div>

关于javascript - js复制功能在html中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48112876/

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