按键 - 转义不起作用

发布于 2024-12-01 02:40:52 字数 204 浏览 1 评论 0原文

$(el).bind('blur keypress', function(event){


  if(event.type == 'keypress' && event.keyCode != 13) return;
  alert(1);

});

即使我按转义键,我也会收到警报框,但我不应该这样做,因为我只允许输入...

$(el).bind('blur keypress', function(event){


  if(event.type == 'keypress' && event.keyCode != 13) return;
  alert(1);

});

I get the alert box even when I press escape, and I shouldn;t because I only allowed Enter...

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

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

发布评论

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

评论(2

早乙女 2024-12-08 02:40:52

默认情况下,“return”将向被调用函数发送 true 值,因此在这种情况下,允许执行默认事件,因此无论您按下什么按钮都会收到警报。因此将 return 语句更改为 return false

By default "return" will send the called function the value true, so in this case the default event is allowed to be performed so whatever button u press u will get the alert. So change the return statement as return false

失退 2024-12-08 02:40:52

如果您只想允许 Enter,请尝试此操作。检查 true 条件,它会让您更清楚。另外,您还可以使用 e.which 来代替 e.keyCode,它是由 jQuery 抽象的,使其跨浏览器兼容。

$(el).bind('blur keypress', function(event){
  if(event.type == 'keypress' && event.which == 13){
      alert(1);
  }
});

If you want to only allow Enter then try this. Check for true condition it will make more clear to you. Also instead of e.keyCode you can use e.which, it is abstracted by jQuery to make it corss browser compatible.

$(el).bind('blur keypress', function(event){
  if(event.type == 'keypress' && event.which == 13){
      alert(1);
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文