有没有办法用 jQuery 捕获剪贴板粘贴事件?

发布于 2024-12-11 21:52:23 字数 142 浏览 0 评论 0原文

我想在用户粘贴时触发一个事件。

我有一个 contenteditable div,当用户粘贴时,我想捕获事件,然后将焦点放回粘贴末尾的 contenteditable div,默认情况下不会发生这种情况。

有想法吗?

谢谢

I want to trigger an event when a user pastes.

I have a contenteditable div and when the user pastes I want to capture the event and then focus back into the contenteditable div at the end of the paste which does not happen by default.

Ideas?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一袭白衣梦中忆 2024-12-18 21:52:23

我不知道这是否可以跨浏览器工作,它是否可以在 Chrome 中工作:

$('body').bind('paste',function(){alert(1)});

I do not know, if this works cross-browser, it's working in Chrome:

$('body').bind('paste',function(){alert(1)});
涫野音 2024-12-18 21:52:23

您可以绑定到“粘贴”事件 -

jQuery(document).bind('paste', function(e){ alert('pasting!') })

You can bind to the 'paste' event -

jQuery(document).bind('paste', function(e){ alert('pasting!') })
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文