// 复制
copy(value) {
let value = value;
let oInput = document.createElement("input");
oInput.value = value;
document.body.appendChild(oInput);
oInput.select(); // 选择对象;
document.execCommand("Copy"); // 执行浏览器复制命令
this.$message({
message: "复制成功",
type: "success",
});
oInput.remove();
},
js实现页面复制功能
原文作者:辣条小哥哥
原文地址: https://blog.csdn.net/weixin_44090040/article/details/114526524
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/weixin_44090040/article/details/114526524
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。