美文网首页
js复制内容

js复制内容

作者: 记录学习生活 | 来源:发表于2022-06-13 17:15 被阅读0次

    copyContent() {
    let link = '链接:' + this.successInfo.openLink + ';账号:' + this.successInfo.account + ';密码:' + this.successInfo.password
    let copyInput = document.createElement('input')
    document.body.appendChild(copyInput)
    copyInput.setAttribute('value', link)
    copyInput.select()
    document.execCommand('copy')
    this.$notify({
    type: 'success',
    message: '复制成功',
    position: 'top-right',
    showClose: false,
    duration: 3000
    })
    copyInput.remove()
    },

    相关文章

      网友评论

          本文标题:js复制内容

          本文链接:https://www.haomeiwen.com/subject/lzwomrtx.html