点击 复制 文案方法

2023-05-25  本文已影响0人  IssunRadiance
// 复制订单号
orderCopy(value) {
  var input = document.createElement("input"); // 直接构建input
  input.value = value; // 设置内容
  document.body.appendChild(input); // 添加临时实例
  input.select(); // 选择实例内容
  document.execCommand("Copy"); // 执行复制
  document.body.removeChild(input); // 删除临时实例
  this.$message({
    type: "success",
    duration: 500,
    message: "复制成功!",
  });
},
上一篇下一篇

猜你喜欢

热点阅读