一个非常酷的复制到剪贴板技术

阅读:5709回复:1
2008-05-08 13:26
写私信
楼主#
可以绕过 Firefox 不让操作剪贴板的限制

通过 Flash 来操作剪贴板

function copy(meintext) {
    if (window.clipboardData) {
        window.clipboardData.setData("Text", meintext);
    } else {
        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=\"http://img.alimama.cn/images/_clipboard.swf\" FlashVars=\"clipboard=" + encodeURIComponent(meintext) + "\" width=\"0\" height=\"0\" type=\"application/x-shockwave-flash\"></embed>";
        document.getElementById(flashcopier).innerHTML = divinfo;
    }
    alert("copy ok!");
}


来源页面在这里,不要说我打广告哈
2008-05-08 13:26
写私信
1楼#
我一般直接复制(*^__^*)
MM:你是个外表冷酷,内心却很甜蜜的男人。