Vue —— 复制文本
Posted cnloop
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue —— 复制文本相关的知识,希望对你有一定的参考价值。
copyText() {
const input = document.createElement("input");
input.setAttribute("readonly", "readonly");
input.setAttribute("value", "hello world");
document.body.appendChild(input);
input.setSelectionRange(0, 9999);
if (document.execCommand("copy")) {
document.execCommand("copy");
console.log("复制成功");
}
document.body.removeChild(input);
}
链接:https://www.jb51.net/article/135605.htm
以上是关于Vue —— 复制文本的主要内容,如果未能解决你的问题,请参考以下文章
在vue中使用document.execCommand实现复制文本的功能