移动端、pc端通用点击复制

移动端、pc端通用点击复制

博主头像
2022-07-03 / 0 评论 / 512 阅读 / 正在检测是否收录...
<script>
    function copyArticle(event) {
        const range = document.createRange();
        range.selectNode(document.getElementById('dd'));
        const selection = window.getSelection();
        if (selection.rangeCount > 0) selection.removeAllRanges();
        selection.addRange(range);
        document.execCommand('copy');
        $(this).text("已复制");
        setTimeout(function () { $("#cp1").text("点击复制") }, 1000);
    }
    document.getElementById('cp1').addEventListener('click', copyArticle, false);
</script>
21
打赏

评论 (0)

取消