copyText() {
const input = document.createElement("input");
input.setAttribute("readonly", "readonly");
input.setAttribute("value", "hello world");
document.body.appendChild(input);
input.select();
input.setSelectionRange(0, 9999);
if (document.execCommand("copy")) {
document.execCommand("copy");
console.log("复制成功");
}
document.body.removeChild(input);
}
转载于:https://www.cnblogs.com/cnloop/p/10135928.html