JavaScript 實現完美相容多瀏覽器的複製功能代碼
這兩天在做Web前端時,遇到需求通過js實現文本複製的功能。經過一番測試,終於實現了出來,有需要的小夥伴可以參考下。
分享一段利用 JavaScript 實現複製功能的代碼,相容多瀏覽器,相容IE和Firefox瀏覽器。
?
| 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> |
以上所述就是本文給大家的分享的全部內容了,希望大家能夠喜歡。