📅  最后修改于: 2022-03-11 15:01:08.729000             🧑  作者: Mango
function textToClipboard (text) {
var dummy = document.createElement("textarea");
document.body.appendChild(dummy);
dummy.value = text;
dummy.select();
document.execCommand("copy");
document.body.removeChild(dummy);
}