剪切板事件
const oInput = document.createElement('input');
oInput.value = tel;
document.body.appendChild(oInput);
oInput.select();
document.execCommand('copy');
oInput.remove(); // 移除键盘
剪切板事件
const oInput = document.createElement('input');
oInput.value = tel;
document.body.appendChild(oInput);
oInput.select();
document.execCommand('copy');
oInput.remove(); // 移除键盘