首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

JS复制图片文字到剪切板

Posted on 2010-11-12 11:46  达奇  阅读(1862)  评论(0编辑  收藏  举报

 

function CopyImage(img) {
    if (img.tagName != 'IMG')
        return;
    if (typeof img.contentEditable == 'undefined')
        return;
    if (!document.body.createControlRange)
        return;
    var ctrl = document.body.createControlRange();
    img.contentEditable = true;
    ctrl.addElement(img);
    ctrl.execCommand('Copy');
    img.contentEditable = false;
    alert('复制图片完成');
}

 

 

function CopyToClipBoard(){
    var clipBoardContent="abcdefg";
    window.clipboardData.setData("Text",clipBoardContent);
    alert('复制文字完成');
}