欢迎访问我的博客,目前从事Machine Learning,欢迎交流

H5/纯JS实现:把网页中的文字复制到剪切板

 copy =() => {
    const dom = document.getElementById(`collect-text-${t.Id}`)
    const selection = window.getSelection()
    const range = document.createRange()

    if (!dom || !selection || !range) return

    // 选择复制目标
    range.selectNodeContents(dom)
    selection.removeAllRanges()
    selection.addRange(range)

    // 已复制文字
    console.log('selectedText', selection.toString())

    // 执行复制
    document.execCommand('copy')

    // 去除所有选中
    selection.removeAllRanges()
   // 复制内容成功,通过ctrl+v粘贴使用!
  }

 

参考资料:

select :  https://github.com/zenorocha/select

 

clipboard.js :  https://github.com/zenorocha/clipboard.js

 

posted @ 2019-11-28 16:15  有蚊子  阅读(2698)  评论(0编辑  收藏  举报