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);  // 删除临时实例
    }
  }

方法代码如上,然后绑定需要执行当前方法的按钮

<button @click="copyShaneUrl('baidu.com')">复制分享链接</button>

 

    原文作者:shaneChow228
    原文地址: https://blog.csdn.net/qq_37487141/article/details/84030156
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞