美文网首页
复制到粘贴板

复制到粘贴板

作者: 追风筝的Hassan | 来源:发表于2019-07-15 16:24 被阅读0次
copyNo (item) {
    let inputText = document.getElementById('input-no')
    inputText.focus()
    inputText.setSelectionRange(0, inputText.value.length)
    if (document.execCommand('copy', true)) {
      this.$message({
        type: 'success',
        message: '已成功复制到剪贴板'
      })
    }
  }

相关文章

网友评论

      本文标题:复制到粘贴板

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