嗯,这东东,也许时不时会用上,收藏起来免得以后到处找。
采用 textarea存放文本内容
function copyToClipboard(text){
const el = document.createElement('textarea' );
el.value = text;
document. body. appendChild(el);
el. focus();
el.select();
document.execCommand('copy');
document. body. removeChild(el);
}
采用navigator.clipboard.writeText复制文本内容
navigator.clipboard.writeText('123');