copyText(text = '') {
const input = document.createElement('input');
// 改爲只讀,禁止用戶輸入法自動獲取焦點(兼容 IOS)
input.setAttribute('readonly', 'readonly');
input.setAttribute('value', text);
document.body.appendChild(input);
// 人爲的設置選中所有文案(兼容 ios)
input.select();
input.setSelectionRange(0, 9999);
const copyResValue = document.execCommand('copy');
// 清除元素
document.body.removeChild(input);
return copyResValue;
},
複製代碼