js复制文本到剪切板

发布时间 2023-12-23 21:45:45作者: shenyixin
    //复制到剪切板
    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("复制成功!");
        }

    }