点击按钮复制文本内容
具体实现:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title></title> <style> #num{ border: none; outline: none; background: none; } </style> </head> <body> <input type="text" id="num" value="20041024"> <button id="copys">复制</button> <script> let copys = document.getElementById("copys"); let num = document.getElementById("num"); copys.onclick = function(){ num.select(); // 选择对象 document.execCommand("Copy");// 执行浏览器复制命令 } </script> </body> </html>
以上就是本章的全部内容,感谢您的阅读。