How to execute ctrl+c or copy commad using javascript or jquery on button click(如何在单击按钮时使用 javascript 或 jquery 执行 ctrl+c 或复制逗号)
问题描述
是否可以使用click EVENT执行复制命令?
Is it possible to execute copy command using click EVENT?
我选择了一些文本,我希望在 onClick
事件上复制该文本,这样我就可以在不使用右键单击或 CTRL<的情况下将该文本粘贴到另一个页面/kbd>+C 复制文本.
I have some text selected and I want this text to be copied on onClick
event, so that I am able to past this text to another page with out using right click or CTRL+C to copy the text.
推荐答案
function copyText(){
var txt = '';
if (window.getSelection)
txt = window.getSelection();
else if (document.getSelection)
txt = document.getSelection();
else return;
document.getElementById("a").value=txt;
allCopied =document.getElementById("a").createTextRange();
allCopied.execCommand("RemoveFormat");
allCopied.execCommand("Copy");
}
但出于安全原因,大多数浏览器都不允许修改剪贴板( Internet explorer除外).
but for security reasons most browsers do not allow to modify the clipboard( except Internet explorer).
这篇关于如何在单击按钮时使用 javascript 或 jquery 执行 ctrl+c 或复制逗号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在单击按钮时使用 javascript 或 jquery 执行 c
基础教程推荐
- 直接将值设置为滑块 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01