美文网首页
点击复制功能

点击复制功能

作者: 吴小冷 | 来源:发表于2021-04-28 17:39 被阅读0次
// 复制
    copyurl(code) {
      const input = document.createElement("input");
      document.body.appendChild(input);
      input.setAttribute("value", "复制内容");
      input.select();
      if (document.execCommand("copy")) {
        document.execCommand("copy");
      }
      document.body.removeChild(input);
      this.$message.success("复制成功");
    },

相关文章

网友评论

      本文标题:点击复制功能

      本文链接:https://www.haomeiwen.com/subject/jnavrltx.html