时间:2021-10-20 08:14:43 | 栏目:vue | 点击:次
介绍:
在做复制文档功能时,考虑到是个不太会复用的小功能,最后选择直接用 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); // 删除临时实例 } }
方法代码如上,然后绑定需要执行当前方法的按钮
<li v-for="(item, index) in meetingList"> <button @click="copyShaneUrl(item.shareUrl)">复制分享链接</button> </li>