河畔的风

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

    //复制文本信息
    copyContext(val){
      const input = document.createElement('input')
      document.body.appendChild(input)
      input.setAttribute('value',val)
      input.select()
      if (document.execCommand('copy')) {
        document.execCommand('copy')
      }
      document.body.removeChild(input)

      this.$Message.success('This text message has been successfully copied.');
    },
posted on 2020-05-24 14:49  河畔的风  阅读(151)  评论(0编辑  收藏  举报