zoukankan      html  css  js  c++  java
  • JS复制内容到剪切板

    JS将内容复制到剪切板的方法。

    代码:

    function copyText() {
    
    //复制内容 
    var txt = document.getElementById("table2").rows[1].cells[0].innerHTML;
    
    //去除空格 
    txt = txt.replace(/ /," ");
    
    //去除换行 
    txt = txt.replace(/<BR><BR>/," "); 
    if (window.clipboardData) { 
    window.clipboardData.clearData(); 
    window.clipboardData.setData("Text", txt); 
    alert("已经成功复制到剪帖板上!"); 
    }else if (navigator.userAgent.indexOf("Opera") != -1) { 
    window.location = txt; 
    }else if (window.netscape) { 
    try { 
    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); 
    } catch (e) { 
    alert("被浏览器拒绝!
    请在浏览器地址栏输入'about:config'并回车
    然后将'signed.applets.codebase_principal_support'设置为'true'"); 
    } //整理:www.jbxue.com 脚本学堂
    var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard); 
    if (!clip) return; 
    var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable); 
    if (!trans) return; 
    trans.addDataFlavor('text/unicode'); 
    var str = new Object(); 
    var len = new Object(); 
    var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString); 
    var copytext = txt; 
    str.data = copytext; 
    trans.setTransferData("text/unicode", str, copytext.length * 2); 
    var clipid = Components.interfaces.nsIClipboard; 
    if (!clip) return false; 
    clip.setData(trans, null, clipid.kGlobalClipboard); 
    alert("已经成功复制到剪帖板上!"); 
    } 
    }
  • 相关阅读:
    移动服务
    CodeForces
    poj1737-----这题有毒
    洛谷P1219 八皇后 (dfs+回溯法)
    codeforces 598D Igor In the Museum(dfs)
    CCPC-Wannafly & Comet OJ 夏季欢乐赛(2019)I
    复制构造函数的作用
    codeforces 1102D Balanced Ternary String(贪心+思维)
    学习3DES加密算法笔记
    个人冲刺(六)
  • 原文地址:https://www.cnblogs.com/study100/p/3544708.html
Copyright © 2011-2022 走看看