1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| <!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <title>测试</title> </head>
<body> <div id="contents" onClick="copit()">66666666666666</div>
<script type="text/javascript"> function copit() { var contents = document.querySelector("#contents").innerText; let storage = document.createElement('input'); storage.value = contents; document.body.appendChild(storage); storage.select(); document.execCommand("Copy"); storage.className = 'storage'; storage.style.display = 'none'; alert('复制成功'); }
</script>
</body>
</html>
|