gpt4 book ai didi

javascript - CTRL C,变量 js

转载 作者:行者123 更新时间:2023-12-03 08:13:00 26 4
gpt4 key购买 nike

在我的 JS 脚本中,我需要从页面文本中推断出一个变量 js 并将其复制到计算机内存中,就像我按 CTRL+C< 复制它一样/kbd>.
如果没有任何额外的库,这可能吗?

最佳答案

实际上我有类似的查询,在得到解决方案后我做了类似的事情:

var link = "text to be copied",
linkCopied = false,
hasError;
var copyElement = document.createElement('input');
copyElement.setAttribute('type', 'text');
copyElement.setAttribute('value', link);
copyElement = document.body.appendChild(copyElement);
copyElement.select();
try {
linkCopied = document.execCommand('copy');
} catch (e) {
hasError = true;
$(copyElement).remove();
prompt("Copy to clipboard:\nSelect, Cmd+C, Enter", link);
} finally {
if (!hasError) {
$(copyElement).remove();
if (!linkCopied) {
prompt("Copy to clipboard:\nSelect, Cmd+C, Enter", link);
}
}
}

你可以检查一下。

关于javascript - CTRL C,变量 js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34071699/

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