# copy-to-clipboard (opens new window)

相关react-copy-to-clipboard (opens new window)

  • 创建一个white-space:prespan元素mark,加入到document;并监听copy事件,做额外的format
  • 选中元素内容
    • document.createRange().selectNodeContents(mark)
    • document.getSelection().addRange(range)
  • 执行复制document.execCommand("copy")
最后更新: 1/12/2023, 1:44:05 PM