<div id="cardList"><div class="btn" onClick="copy(111)">點擊我,復制我</div></div> <script type="text/javascript"> function copy(str){var save = function (e){e.clipboardData.setData('text/plain',str);e.preventDefault();}document.addEventListener('copy',save);document.execCommand("copy");alert("復制成功");} </script>
?
<textarea cols="20" rows="10" id="biao1">用戶定義的代碼區域</textarea> <input type="button" onClick="copyUrl2()" value="點擊復制代碼" /> <script type="text/javascript"> function copyUrl2() { var Url2=document.getElementById("biao1"); Url2.select(); // 選擇對象 document.execCommand("Copy"); // 執行瀏覽器復制命令 alert("已復制好,可貼粘。"); } </script>
?
<div cols="20" id="biao1">12345678dddd</div> <input type="button" onClick="copyUrl2()" value="點擊復制代碼" /> <script type="text/javascript">function copyUrl2(){var Url2=document.getElementById("biao1").innerText;var oInput = document.createElement('input');oInput.value = Url2;document.body.appendChild(oInput);oInput.select(); document.execCommand("Copy"); oInput.style.display='none';alert('復制成功');} </script>
?