gpt4 book ai didi

javascript - 使用 jquery 检测从网页复制的内容

转载 作者:行者123 更新时间:2023-11-30 17:26:51 26 4
gpt4 key购买 nike

我有一个关于 jquery 的问题。

我知道我们可以像这样使用 jquery 检测副本:

$("#textA").bind('copy', function() {
$('span').text('copy behaviour detected!')
});
$("#textA").bind('paste', function() {
$('span').text('paste behaviour detected!')
});
$("#textA").bind('cut', function() {
$('span').text('cut behaviour detected!')
});

但是,我想知道究竟复制了什么?

例如,用户复制一个框的值,我需要获取并拥有该值。

如何用 jquery 做到这一点?

最佳答案

你可以用这个

function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
return text;
}

$(document).keypress("c",function(e) {
if(e.ctrlKey)
alert(getSelectionText());
});

这应该是工作

关于javascript - 使用 jquery 检测从网页复制的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24081277/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com