小编给大家分享一下javaScript如何实现复制粘贴功能,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
javaScript实现复制粘贴功能的方法:1、通过“document.execCommand('copy')”方法;2、通过ClipboardJS来实现内容的复制。
本文操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
js实现复制粘贴的两种方法
一、前言
界面需要复制功能,所以就写了一个作为简单记录
二、方法、推荐第二种。
1、第一种方法
1)、通过 document.execCommand('copy')
2)、前端代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>constructor-nodelist</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.css"/>
</head>
<body>
<button onclick="copyText('copy_file')">点我复制</button>
<a id="copy_file" href="复制内容" ></a>
<script type="text/javascript" src="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.js"></script>
<script>
function copyText(str_file) {
const btn = document.querySelector('.'+str_file);
var copy_val = document.getElementById(str_file)
var copy_file = copy_val.getAttribute("href");
btn.addEventListener('click',() => {
const input = document.createElement('input');
document.body.appendChild(input);
input.setAttribute('value', copy_file);
input.select();
if (document.execCommand('copy')) {
document.execCommand('copy');
swal("复制成功!","success");
}
document.body.removeChild(input);
})
}
</script>
</body>
3)、总结:主要是通过 class和id 来复制 a标签中的 href,把复制好的内容放到 生成的input标签中,然后复制结束把 input标签给remove,这个你复制内容自行发挥,和修改 js。
4)、问题:第一次点击不生效,需要点击两次,暂时不解决
2、第二种方法
1)、通过 ClipboardJS 来实现 内容的复制,推荐这个
2)、git地址:clipboardjs(https://clipboardjs.com/)
3)、前端代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<!-- 请自行去git项目下载 js-->
<script src="./clipboard.min.js"></script>
<link rel="stylesheet" href="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.css"/>
<script type="text/javascript" src="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.js"></script>
</head>
<body>
<button id="btn" data-clipboard-text="str_555" onclick="copyText()">
<span>Copy</span>
</button>
</body>
</html>
<script>
function copyText() {
var btn = document.getElementById('btn');
console.log(btn);
var clipboard = new ClipboardJS(btn);
<!-- var clipboard = new ClipboardJS(btn, {-->
<!-- container: document.getElementById('btn')-->
<!-- });--> 如果你的项目是 bootstrap框架,请使用这个
clipboard.on('success', function(e) {
console.log(e);
swal("复制成功!","success");
clipboard.destroy();
});
clipboard.on('error', function(e) {
console.log(e);
swal("复制失败","error");
clipboard.destroy();
});
}
</script>
以上是“javaScript如何实现复制粘贴功能”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!