js实现复制并能保留原格式粘贴

使用textarea能粘贴的时候保留原格式。

使用input粘贴的时候格式会丢失。

      const input = document.createElement('textarea');
      document.body.appendChild(input);
      input.value = “复制我呀”;
      // input.setAttribute('value', "复制我呀");
      input.select();
      if (document.execCommand('copy')) {
        document.execCommand('copy');
        console.log('复制成功');
      }
      document.body.removeChild(input);

 

    原文作者:_葱
    原文地址: https://blog.csdn.net/qq_20567691/article/details/107062710
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞