真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Javascript如何實(shí)現(xiàn)復(fù)制動(dòng)作

小編給大家分享一下Javascript如何實(shí)現(xiàn)復(fù)制動(dòng)作,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

成都創(chuàng)新互聯(lián)公司主營(yíng)五蓮網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,重慶APP開發(fā),五蓮h5微信小程序搭建,五蓮網(wǎng)站營(yíng)銷推廣歡迎五蓮等地區(qū)企業(yè)咨詢

Javascript 實(shí)現(xiàn)復(fù)制(Copy)動(dòng)作大全

一、實(shí)現(xiàn)點(diǎn)擊按鈕,復(fù)制文本框中的的內(nèi)容


function copyUrl2(){
    var Url2=document.getElementById("biao1");
    Url2.select(); // 選擇對(duì)象
    document.execCommand("Copy"); // 執(zhí)行瀏覽器復(fù)制命令
    alert("已復(fù)制好,可貼粘。");
}

 
用戶定義的代碼區(qū)域

原理:點(diǎn)擊按鈕的時(shí)候觸發(fā)copyUrl2函數(shù),根據(jù)biao1 ID選中對(duì)象,然后在根據(jù)execCommand復(fù)制選中內(nèi)容,所以此時(shí)選擇的內(nèi)容必須是可視的,也就是說不能是隱藏的文本域。

二、復(fù)制專題地址和 url 地址,傳給 QQ/MSN 上的好友





Js復(fù)制代碼


function copyToClipBoard(){ var clipBoardContent=""; clipBoardContent+=document.title; clipBoardContent+=""; clipBoardContent+=this.location.href; window.clipboardData.setData("Text",clipBoardContent); alert("復(fù)制成功,請(qǐng)粘貼到你的QQ/MSN上推薦給你的好友"); }

三、直接復(fù)制 url


 

function copyUrl(){
    var clipBoardContent=this.location.href;
    window.clipboardData.setData("Text",clipBoardContent);
    alert("復(fù)制成功!");
}

四、點(diǎn)擊文本框時(shí),復(fù)制文本框里面的內(nèi)容



function oCopy(obj){
    obj.select();
    js=obj.createTextRange();
    js.execCommand("Copy")
    alert("復(fù)制成功!");
}

五、復(fù)制文本框或者隱藏域中的內(nèi)容


function CopyUrl(target){
    target.value=myimg.value;
    target.select(); 
    js=myimg.createTextRange(); 
    js.execCommand("Copy");
    alert("復(fù)制成功!");
}
 
function AddImg(target){
    target.value="[IMG]"+myimg.value+"[/ img]";
    target.select();
    js=target.createTextRange(); 
    js.execCommand("Copy");
    alert("復(fù)制成功!");
}

六、復(fù)制 span 標(biāo)記中的內(nèi)容



    function copyText(obj) {
    var rng = document.body.createTextRange();
    rng.moveToElementText(obj);
    rng.scrollIntoView();
    rng.select();
    rng.execCommand("Copy");
    rng.collapse(false);
    alert("復(fù)制成功!");
}

七、瀏覽器兼容  copyToClipboard("拷貝內(nèi)容")

function copyToClipboard(txt) {
      if (window.clipboardData) {
        window.clipboardData.clearData();
        clipboardData.setData("Text", txt);
        alert("復(fù)制成功!");
   
      } else if (navigator.userAgent.indexOf("Opera") != -1) {
        window.location = txt;
      } else if (window.netscape) {
        try {
          netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
        } catch (e) {
          alert("被瀏覽器拒絕!\n請(qǐng)?jiān)跒g覽器地址欄輸入'about:config'并回車\n然后將 'signed.applets.codebase_principal_support'設(shè)置為'true'");
        }
        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("復(fù)制成功!");
      }
    }

八、兼容各大瀏覽器的復(fù)制代碼(結(jié)合ZeroClipboard.js)



Zero Clipboard Test


 var clip = null; 
 function $(id) { return document.getElementById(id); } 
 function init() {
     clip = new ZeroClipboard.Client();
     clip.setHandCursor(true);     
     clip.addEventListener('mouseOver', function (client) {
  // update the text on mouse over
  clip.setText( $('fe_text').value );
     });
       
     clip.addEventListener('complete', function (client, text) {
  //debugstr("Copied text to clipboard: " + text );
  alert("該地址已經(jīng)復(fù)制,你可以使用Ctrl+V 粘貼。");
     });
     clip.glue('clip_button', 'clip_container' );
 }




復(fù)制

以上是“Javascript如何實(shí)現(xiàn)復(fù)制動(dòng)作”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章題目:Javascript如何實(shí)現(xiàn)復(fù)制動(dòng)作
文章來(lái)源:http://weahome.cn/article/geipie.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部