js 複製 標籤中的內容 方法

<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瀏覽器

相關文章
相關標籤/搜索