實例代碼: 測試火狐、谷歌和IE可用 ...
實例代碼:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script type="text/javascript"> function copyLink(){ var e = document.getElementById("copy"); e.select(); // 選擇對象 document.execCommand("Copy"); // 執行瀏覽器複製命令 alert("複製鏈接成功!"); } </script> </head> <body> <textarea id="copy">複製鏈接成功</textarea> <input type="button" onclick="copyLink();" value="點擊複製"></input> </body> </html>
測試火狐、谷歌和IE可用