const textarea = document.createElement("textarea");
textarea.setAttribute("readonly", true);
textarea.value = ‘传入的值‘;
document.body.appendChild(textarea);
textarea.setSelectionRange(0, textarea.value.length);
textarea.select();
if (document.execCommand("copy")) {
this.$Message.success("复制成功");
} else {
this.$Message.error("复制失败");
}
document.body.removeChild(textarea);
相关文章
- 01-09cent browser 百分浏览器不能使用剪切板复制粘贴
- 01-09js如何将内容添加到剪切板?
- 01-09Error:Maven Resources Compiler: Failed to copy 某路径\bootstrap.min.js
- 01-09ClipboardJS 实现JS复制到剪切板
- 01-09vue中使用剪切板插件 clipboard.js
- 01-09【JS插件】【9】操作剪切板 clipboard.js 与 ZeroClipboard.js
- 01-09Js 之复制到剪切板
- 01-09js vue uniapp 复制到剪切板
- 01-09js复制文本到剪切板
- 01-09js兼容安卓和IOS的复制文本到剪切板