js复制功能(pc复制,移动端复制到手机剪切板)

2023-07-10,,

一个函数,直接调就好了,已测pc和app都适用

 1     // 一键复制
2 copyBtn(data) {
3 const input = document.createElement("input");
4 input.setAttribute("readonly", "readonly");
5 input.setAttribute("value", data);
6 document.body.appendChild(input);
7 input.select();
8 input.setSelectionRange(0, 9999);
9
10 if (document.execCommand("copy")) { // true
11 document.execCommand("copy");
12 console.log("复制成功");
13 }
14 document.body.removeChild(input);
15 },

js复制功能(pc复制,移动端复制到手机剪切板)的相关教程结束。

《js复制功能(pc复制,移动端复制到手机剪切板).doc》

下载本文的Word格式文档,以方便收藏与打印。