实现点击按钮复制输入框信息

创建一个按钮, 添加点击事件COPYURL

<el-button @click="copyUrl('我是复制的信息')">复制</el-button>

JS代码部分

copyUrl(val) {
  const input = document.createElement("input");
  document.body.appendChild(input);
  input.setAttribute("value", val);
  input.select();
  if (document.execCommand("copy")) {
    document.execCommand("copy");
  }
  document.body.removeChild(input);
}
上一篇:mavon-editor树形目录与仿gitbook目录滚动自动折叠和展开


下一篇:第一次网页前端培训笔记(HTML)