复制文字到剪切板的方法

来源:互联网 发布:互联网十云计算概念股 编辑:程序博客网 时间:2024/05/17 21:48
IE
window.clipboardData.setData('Text',createClipboardData(param));
google,chrome
// 复制到剪切板    function copyToClipboard(text) {        var textArea = document.createElement("textarea");        textArea.value = text;        document.body.appendChild(textArea);        textArea.select();        try {            var successful = document.execCommand('copy');         } catch (err) {        }        document.body.removeChild(textArea);    }