vue - 一键复制,不用插件
Posted gggggggxin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue - 一键复制,不用插件相关的知识,希望对你有一定的参考价值。
copy(text) {
var Input = document.createElement(‘input‘); //创建一个隐藏input(重要!)
Input.value = text; //赋值
document.body.appendChild(Input);
Input.select(); // 选择对象
document.execCommand(‘Copy‘); // 执行浏览器复制命令
Input.className = ‘oInput‘;
Input.style.display = ‘none‘;
this.$message({ message: ‘复制成功‘, type: ‘success‘ });
},
以上是关于vue - 一键复制,不用插件的主要内容,如果未能解决你的问题,请参考以下文章