标签:add com 选中 node 实现 col nod document move
const dom = document.getElementById(`span1`) const selection = window.getSelection() const range = document.createRange() // 选择复制目标 range.selectNodeContents(dom) selection.removeAllRanges() selection.addRange(range) // 已复制文字 console.log(‘selectedText‘, selection.toString()) // 执行复制 document.execCommand(‘copy‘) // 去除所有选中,否则该元素会显示为 被选中的颜色 selection.removeAllRanges()
标签:add com 选中 node 实现 col nod document move
原文地址:https://www.cnblogs.com/ww01/p/11950734.html