1. 程式人生 > >使用原生 js 複製內容到剪貼簿

使用原生 js 複製內容到剪貼簿

function copy (str) {
        let oInput = document.createElement('input')
        oInput.value = str
        document.body.appendChild(oInput)
        oInput.select()
        document.execCommand("Copy")
        oInput.style.display = 'none'
        document.body.removeChild(oInput)
        window.alert('複製成功'
) }