const textAreaEle = document.createElement('textarea');
textAreaEle.style.border = '0';
textAreaEle.style.padding = '0';
textAreaEle.style.margin = '0';
textAreaEle.style.position = 'absolute';
textAreaEle.style.left = '-9999px';
textAreaEle.style.top = `${document.documentElement.scrollTop}px`;
textAreaEle.value = text;
document.body.appendChild(textAreaEle);
textAreaEle.focus();
textAreaEle.select();
try {
document.execCommand('copy');
} catch (err) {
} finally {
document.body.removeChild(textAreaEle);
}