下一章 上一章 目录 设置
4、第 4 章 ...
-
<button @click=\"copy(\'需要复制的内容\')\" size=\"medium\" type=\"primary\" plain>一键复制</button>
copy(item) {
var cInput = document.createElement(\"input\");
cInput.value = item;
document.body.appendChild(cInput);
cInput.select(); // 选取文本框内容
document.execCommand(\"copy\");
this.$message({
type: \"success\",
message: \"内容复制成功\"
});
// 复制成功后再将构造的标签移除
document.body.removeChild(cInput);
},