<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>点击复制内容</title> </head> <body> <p onclick="copy(this)">点击我可以复制当前内容哦~</p> </body> <script> function copy(that) { var inp = document.createElement('input'); // create input标签 document.body.appendChild(inp) // 添加到body中 inp.value = that.textContent // 给input设置value属性为需要copy的内容 inp.select(); // 选中 document.execCommand('copy', false); // copy已经选中的内容 inp.remove(); // 删除掉这个dom alert("复制成功") } </script> </html>