码迷,mamicode.com
首页 > Web开发 > 详细

js 点击复制内容

时间:2019-10-07 19:35:44      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:val   charset   sage   tle   tee   实例   复制   文章   developer   

<!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 点击复制内容

标签:val   charset   sage   tle   tee   实例   复制   文章   developer   

原文地址:https://www.cnblogs.com/junyi-bk/p/11631631.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!