js 直接复制文本内容

2021/10/3 23:14:39

本文主要是介绍js 直接复制文本内容,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 const target = document.createElement('input') // 创建input节点
 target.value = text // 给input的value赋值
 document.body.appendChild(target) // 向页面插入input节点
 target.select() // 选中input
 try {
   document.execCommand('Copy') // 执行浏览器复制命令
   this.$message({
     message: '复制成功',
     type: 'success'
   })
 } catch {
   console.log('复制失败')
 }


这篇关于js 直接复制文本内容的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程