js 点击复制内容
Posted junyi-bk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 点击复制内容相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>测试实例</title> <script> function myFunction(message) var input = document.createElement("input"); input.value = message; document.body.appendChild(input); input.select(); input.setSelectionRange(0, input.value.length), document.execCommand(‘Copy‘); document.body.removeChild(input); alert("复制成功", "text"); </script> </head> <body> <div onclick="myFunction(‘要复制的内容‘)">点我</div> </body> </html>
参考文章:https://blog.csdn.net/Developersq/article/details/100522751
以上是关于js 点击复制内容的主要内容,如果未能解决你的问题,请参考以下文章