IE FF 剪切板

来源:互联网 发布:剑网3血凰流火淘宝 编辑:程序博客网 时间:2024/06/07 16:08

今天突然要用到,找了好久,才找到了这个方法,大家分享一下

function getclipboard(txtValue){                     
        if(window.clipboardData){                   
            window.clipboardData.setData("Text",txtValue);
        }else if(window.netscape){
            var flashcopier = 'flashcopier';
            if(!document.getElementById(flashcopier)) {
                var divholder = document.createElement('div');
                divholder.id = flashcopier;
                 document.body.appendChild(divholder);
           }
                document.getElementById(flashcopier).innerHTML = '';
                var divinfo = '<embed src="css/_clipboard.swf" FlashVars="clipboard='+encodeURIComponent(txtValue)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
                 document.getElementById(flashcopier).innerHTML = divinfo;                                                                                      
       }
        alert(txtValue+"/n内容已复制到剪贴板了");                                  
}