美文网首页
拷贝文本

拷贝文本

作者: clmll | 来源:发表于2019-12-24 10:14 被阅读0次
export const copyText = (str = "") => {
  let textArea = document.createElement("textarea");
  //解决火狐复制会滚动
  textArea.style.cssText = "opacity:0;position:fixed";
  textArea.value = str;
  document.body.appendChild(textArea);
  textArea.select();
  if (document.execCommand('copy')){
    document.execCommand('copy');
    //message.info("复制成功");
  } else {
    //message.warning("该浏览器不支持点击复制到剪贴板");
  }
  document.body.removeChild(textArea);
};

相关文章

网友评论

      本文标题:拷贝文本

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