js实现复制功能兼容ios

html:

<div id="copyBT">这是要复制的1内容</div>

<a id="contentas">这是复制按钮</a>

js:

   function copyArticle() {
                const range = document.createRange();
                range.selectNode(document.getElementById('copyBT'));
                const selection = window.getSelection();
                if (selection.rangeCount > 0) selection.removeAllRanges();
                selection.addRange(range);
                document.execCommand('copy');
                alert("复制成功")
            }

            document.getElementById('contentas').addEventListener('click', copyArticle, false);

  

posted @ 2019-09-25 15:57  明明一颗大白菜  阅读(2527)  评论(0编辑  收藏  举报
<-- -->