晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

js复制文本到剪切板

Posted on 2023-12-23 21:41  shenyixin  阅读(170)  评论(0编辑  收藏  举报
    //复制到剪切板
    function copyToClipboard(text) {
        var input = document.createElement('input');
        input.setAttribute('readonly', 'readonly');
        input.setAttribute('value', text);
        document.body.appendChild(input);
        input.select();
        input.setSelectionRange(0, 9999);
        document.execCommand('Copy');
        input.remove();
        if (document.execCommand('Copy')) {
            alert("复制成功!");
        }

    }