IE js程式碼: 複製程式碼 程式碼如下: <BR>function copyUrl2() <BR>{ <BR>var Url2=document.getElementById("biao1"); <BR>Url2.select(); // 選擇物件<BR>document.execCommand("Copy "); // 執行瀏覽器複製指令<BR>alert("已複製好,可貼上。"); <BR>} <BR> 使用者定義的程式碼區域 chrome JS程式碼: 複製程式碼 程式碼如下: <br><br>var clip = new ZeroClipboard.Client(); <BR>clip.setHandCursor( true ); <BR>clip.setText('複製內容'); <BR>clip.glue('button'); <br><br></ script> <br><br><input type="button" id="button" value="點選複製程式碼" /> <BR>