前端巧妙实现点击复制操作
Posted ଳxin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端巧妙实现点击复制操作相关的知识,希望对你有一定的参考价值。
copyGroupId(groupId) {
//创建一个新组件
let oInput = document.createElement('input');
//给新组件赋值
oInput.value = groupId;
//添加新节点到页面body中
document.body.appendChild(oInput);
//选择对象
oInput.select();
//对选择对象的值进行复制到浏览器中
document.execCommand("Copy");
this.$message.success(groupId);
//删除新节点(重置操作)
document.body.removeChild(oInput);
},
以上是关于前端巧妙实现点击复制操作的主要内容,如果未能解决你的问题,请参考以下文章