美文网首页
复制功能

复制功能

作者: 前端人 | 来源:发表于2022-02-18 15:55 被阅读0次
      export function copyText(txt) {
     const transfer = document.createElement('input');
     document.body.appendChild(transfer);
     transfer.value = txt; // 这里表示想要复制的内容
     transfer.focus();
     transfer.select();
     if (document.execCommand) {
       document.execCommand('copy');
       message.success('复制成功');
     }
     transfer.blur();
    
     document.body.removeChild(transfer);
    }
    

    相关文章

      网友评论

          本文标题:复制功能

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