欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

功能:js 点击复制内容功能

程序员文章站 2024-01-30 10:51:52
...

直接上代码

/** 复制内容 */
export function handleCopy (value: string) {
	/** 创建一个input元素 通过执行选择input里面的value 执行copy命令 即可 然后 消除元素 */
  const dom = document.createElement('input')
  dom.value = value
  document.body.appendChild(dom)
  dom.select()
  document.execCommand('copy')
  dom.remove()
}