介绍:
在做复制文档功能时,考虑到是个不太会复用的小功能,最后选择直接用 document.execCommand 方法实现。
在查阅资料时候,发现其他人都需要在页面上写上结构、ID。然后捕捉某个ID获取内容,感觉很不方便。
使用:
methods: {
copyShaneUrl(shareLink){
var input = document.createElement("input"); // 直接构建input
input.value = shareLink; // 设置内容
document.body.appendChild(input); // 添加临时实例
input.select(); // 选择实例内容
document.execCommand("Copy"); // 执行复制
document.body.removeChild(input); // 删除临时实例
}
}
方法代码如上,然后绑定需要执行当前方法的按钮
<button @click="copyShaneUrl('baidu.com')">复制分享链接</button>