如何防止 Enter 按键触发按钮单击?

发布于 2024-11-19 19:08:50 字数 271 浏览 3 评论 0原文

我有以下代码片段。

  $("#days").keypress(function(e){
      if(e.keyCode == 13){
         self.validateNightModalForm();
      }
  });

基本上,它检查输入然后调用一个函数。

我唯一的问题是 IE8 也点击一个按钮。当我按下回车键时。我已经检查过所有其他浏览器,但只有 IE8 可以这样做。

有什么办法可以预防吗?

I have the following code snippet.

  $("#days").keypress(function(e){
      if(e.keyCode == 13){
         self.validateNightModalForm();
      }
  });

basically, it checks for enter then invoke a function.

My only problem is that IE8 also clicks a button. When I hit enter. I've checked it with all other browsers, but only IE8 does this.

Is there any way to prevent it?

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

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

发布评论

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

评论(1

夏末 2024-11-26 19:08:50

尝试添加这两行:

if (e.keyCode == 13) {
    self.validateNightModalForm();
    e.preventDefault()
    return false;
}

希望这将阻止按键事件“上升”并触发表单提交。

Try adding those two lines:

if (e.keyCode == 13) {
    self.validateNightModalForm();
    e.preventDefault()
    return false;
}

Hopefully this will stop the keypress event from "going up" and trigger the form submit.

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