萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> JavaScript 實現完美兼容多浏覽器的復制功能代碼

JavaScript 實現完美兼容多浏覽器的復制功能代碼

   JavaScript 實現完美兼容多浏覽器的復制功能代碼

       這兩天在做Web前端時,遇到需求通過js實現文本復制的功能。經過一番測試,終於實現了出來,有需要的小伙伴可以參考下。

  分享一段利用 JavaScript 實現復制功能的代碼,兼容多浏覽器,兼容IE和火狐浏覽器。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>JavaScript 復制功能代碼,兼容多浏覽器</title> </head> <script language="javascript"> copyValue=function(strValue){ if(isIE()){ clipboardData.setData("Text",strValue); alert("您已成功復制了此地址"); }else{ copy(strValue); alert("內容已被復制!"); } } function isIE(number){ if(typeof(number)!=number){ return!!document.all; } } function copy(text2copy){ 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://files.jb51.net/demoimg/200910/_clipboard.swf" FlashVars="clipboard='+text2copy+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';//這裡是關鍵 document.getElementById(flashcopier).innerHTML = divinfo; } </script> <div class="phoinfo"> 貼圖地址:<input name="txtPhotoPath" value="www.daimajiayuan.com" id="txtPhotoPath" type="text" size="65" /> <input type="button" name="btnCopy" id="btnCopy" onClick="copyValue('www.daimajiayuan.com');" value="復制" /> </div> </body> </html>

  以上所述就是本文給大家的分享的全部內容了,希望大家能夠喜歡。

copyright © 萬盛學電腦網 all rights reserved