這篇文章主要介紹了js在chrome和IE下分別實現復制,需要的朋友可以參考下
IE js代碼: 代碼如下: <script type="text/javascript"> function copyUrl2() { var Url2=document.getElementById("biao1"); Url2.select(); // 選擇對象 document.execCommand("Copy"); // 執行浏覽器復制命令 alert("已復制好,可貼粘。"); } </script> <textarea cols="20" rows="10" id="biao1">用戶定義的代碼區域</textarea> <input type="button" onClick="copyUrl2()" value="點擊復制代碼" /> chrome JS代碼: 代碼如下: <script src="http://www.weicaiyun.com/assets/js/copy/ZeroClipboard.js"></script> <script type="text/javascript"> var clip = new ZeroClipboard.Client(); clip.setHandCursor( true ); clip.setText('復制內容'); clip.glue('button'); </script> <input type="button" id="button" value="點擊復制代碼" />