关于js 实现一键复制的功能

  

复制代码
//    注意: 使用textarea支持换行,使用input不支持换行
      const textarea = document.createElement('textarea');
      textarea.value = content;
      document.body.appendChild(textarea);
 
      textarea.select();
      if (document.execCommand('copy'))     
      document.execCommand('copy');
      document.body.removeChild(textarea);
复制代码

 

posted @   饭饭大人  阅读(924)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示