【JS】复制文字

gengboxb 292 0
function copyText(content){
    if(content){
        const input = document.createElement('input')
        document.body.appendChild(input)
        input.setAttribute('value',content)
        input.select()
        if (document.execCommand('copy')) {
            document.execCommand('copy')
        }
        document.body.removeChild(input)
        alert('已复制到剪贴板')
    }
}

发表评论 取消回复
表情 图片 链接 代码

分享