gpt4 book ai didi

javascript - 将值复制到剪贴板

转载 作者:行者123 更新时间:2023-11-30 19:57:28 24 4
gpt4 key购买 nike

在我的网站上,我想创建一个复制输入字段值的按钮

JS 文件

function copyClipBoard() {
var copyText = document.getElementById('input');
copyText.select();
document.execCommand("copy");
}

HTML

<input type="text" id="input" placeholder="your new password" disabled>

是因为输入框被禁用了吗?我见过很多代码完全相同的例子,但这里不起作用

最佳答案

disabled 更改为 readonly 它通常应该适用于所有浏览器。

另一种解决方法是:

function copy() {
copyText = (document.getElementById('id'));
copyText.disabled = false;
copyText.select();
document.execCommand('Copy');
copyText.disabled = true;
}

关于javascript - 将值复制到剪贴板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53795018/

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