js 呼叫瀏覽器複製功能

我喜欢喝糖水發表於2024-07-22
function copyWord(dom) {
var dom='.'+dom;
var copyText = $(dom).text().trim(); // 使用trim()移除兩端空白
// navigator clipboard 需要https等安全上下文
if (navigator.clipboard && window.isSecureContext) {
// navigator clipboard 向剪貼簿寫文字
return navigator.clipboard.writeText(copyText);
} else {
// document.execCommand('copy') 向剪貼簿寫文字
let input = document.createElement('input')
input.style.position = 'fixed'
input.style.top = '-10000px'
input.style.zIndex = '-999'
document.body.appendChild(input)
input.value = copyText
input.focus()
input.select()
try {
let result = document.execCommand('copy')
document.body.removeChild(input)
if (!result || result === 'unsuccessful') {
layer.msg('複製失敗');
} else {
layer.msg('複製成功');
}
} catch (e) {
document.body.removeChild(input)
alert('當前瀏覽器不支援複製功能,請檢查更新或更換其他瀏覽器操作')
}
}
}

相關文章