我花了 20 分钟在网上搜索这个,但找不到。我想要的是能够在没有按钮的情况下在单击时复制文本字符串。文本字符串将在“span”类中。
- 用户将鼠标悬停在文本字符串上
- 用户点击文本字符串
- 文本字符串被复制到剪贴板
任何帮助将不胜感激。谢谢!
我花了 20 分钟在网上搜索这个,但找不到。我想要的是能够在没有按钮的情况下在单击时复制文本字符串。文本字符串将在“span”类中。
任何帮助将不胜感激。谢谢!
您可以将copy
事件附加到<span>
元素,document.execCommand("copy")
在事件处理程序中使用,设置event.clipboardData
为span
.textContent
with.setData()
方法event.clipboardData
const span = document.querySelector("span");
span.onclick = function() {
document.execCommand("copy");
}
span.addEventListener("copy", function(event) {
event.preventDefault();
if (event.clipboardData) {
event.clipboardData.setData("text/plain", span.textContent);
console.log(event.clipboardData.getData("text"))
}
});
<span>text</span>
试试这个 。document.execCommand('copy')
function copy(that){
var inp =document.createElement('input');
document.body.appendChild(inp)
inp.value =that.textContent
inp.select();
document.execCommand('copy',false);
inp.remove();
}
<p onclick="copy(this)">hello man</p>
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<p style="color:wheat;font-size:55px;text-align:center;">How to copy a TEXT to Clipboard on a Button-Click</p>
<center>
<p id="p1">This is TEXT 1</p>
<p id="p2">This is TEXT 2</p><br/>
<button onclick="copyToClipboard('#p1')">Copy TEXT 1</button>
<button onclick="copyToClipboard('#p2')">Copy TEXT 2</button>
<br/><br/><input class="textBox" type="text" id="" placeholder="Dont belive me?..TEST it here..;)" />
</center>
Jquery代码在这里
function copyToClipboard(element) {
var $temp = $("<input>");
$("body").append($temp);
$temp.val($(element).text()).select();
document.execCommand("copy");
$temp.remove();
}
除了复制文本外,您还必须确保在复制到剪贴板后任何先前选择的组件仍保持选中状态。
const copyToClipboard = str => {
const el = document.createElement('textarea'); // Create a <textarea> element
el.value = str; // Set its value to the string that you want copied
el.setAttribute('readonly', ''); // Make it readonly to be tamper-proof
el.style.position = 'absolute';
el.style.left = '-9999px'; // Move outside the screen to make it invisible
document.body.appendChild(el); // Append the <textarea> element to the HTML document
const selected =
document.getSelection().rangeCount > 0 // Check if there is any content selected previously
? document.getSelection().getRangeAt(0) // Store selection if found
: false; // Mark as false to know no selection existed before
el.select(); // Select the <textarea> content
document.execCommand('copy'); // Copy - only works as a result of a user action (e.g. click events)
document.body.removeChild(el); // Remove the <textarea> element
if (selected) { // If a selection existed before copying
document.getSelection().removeAllRanges(); // Unselect everything on the HTML document
document.getSelection().addRange(selected); // Restore the original selection
}
};
ps 添加源
最简单的现代解决方案是:
navigator.clipboard.writeText(value)
稍后可以通过以下方式访问该值:
navigator.clipboard.readText()
注意:要在 中使用
iframe
,您需要添加写(也可能是读)权限<iframe src='' allow='clipboard-read; clipboard-write'/>
注意:要在浏览器扩展程序中使用(在网页上),您需要:
- 来自用户触发事件的调用 (
click
...)- 将“
clipboardWrite
”权限添加到清单
注意:要在开发控制台中使用,请
copy()
改用copy('string')