捕获粘贴事件

发布于 2024-12-03 05:50:57 字数 190 浏览 0 评论 0原文

我需要一份副本&粘贴事件。我有一个例子。但粘贴事件会触发 4 次。为什么?我需要一次。这是代码吗?请帮我?

$(function() {
  return $('#myform').bind('paste', function(e) {
    return alert("123");
  });
});

I need a catch copy & paste event. I have a example. But paste event fires 4 times. Why? I need a it a one time. Here is the code? Please help me?

$(function() {
  return $('#myform').bind('paste', function(e) {
    return alert("123");
  });
});

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

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

发布评论

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

评论(1

罗罗贝儿 2024-12-10 05:50:57

我不确定您的浏览器经历了四个事件被触发,但我刚刚亲自测试了您的代码,但无法重现该行为。话虽这么说,您的代码存在一些问题...

  1. 绑定事件后无需返回 jQuery 对象。

  2. 无需返回alert(),因为alert返回undefined

看看这些变化:

$(function() {
  $('#myform').bind('paste', function(e) {
    console.log(e.type);
  });
});

查看实时:http://jsfiddle.net/rwaldron/6CKxM/

I'm not sure which browser your experience four events being fired, but I've jus tested your code for myself and could not reproduce the behaviour. That being said, there are a few issues with your code as it is...

  1. There is no need to return the jQuery object after binding the event.

  2. There is no need to return alert(), since alert returns undefined.

Take a look at these changes:

$(function() {
  $('#myform').bind('paste', function(e) {
    console.log(e.type);
  });
});

See live: http://jsfiddle.net/rwaldron/6CKxM/

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