js 複製 標籤中的內容 方法
阿新 • • 發佈:2018-12-20
<span id='id'>hello world</span><input type='button' onClick='copy("id")' value='點選複製內容' /> <script> function copy(id) { var Url2=document.getElementById(id).innerText; var oInput = document.createElement('input'); oInput.value = Url2; document.body.appendChild(oInput); oInput.select();// 選擇物件 document.execCommand("Copy"); // 執行瀏覽器複製命令 oInput.className = 'oInput'; oInput.style.display='none'; console.log("複製成功"); } </script>
標籤的話 我用的是 span 用什麼標籤看需求了 只要有id 就可以複製出來標籤中的value