在 Jorn Zaefferer 的自动完成插件中阻止 ENTER 提交包含表单
我使用 Jorn Zaefferer 的 Autocomplete jQuery 插件,该插件效果很好,除了一件事之外 - 如果用户使用键盘滚动自动完成选项列表,然后在他想要的选项上按 Enter,它会提交包含的表单。
我确信巧妙放置的 return false;
会解决这个问题 - 有人有什么想法吗?
I use Jorn Zaefferer's Autocomplete jQuery plugin which works great except for one thing - if a user is using his keyboard to scroll through the autocomplete options list and then presses Enter on the one he wants, it submits the containing form.
Im sure a cleverly placed return false;
would sort this out - does anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以上至少可以确保无论表单提交如何触发,您都可以在必要时捕获并抑制它。
The above would at least ensure that no matter how the form submit is triggered, you can capture and suppress it if necessary.
问题已解决
我的解决方案是在自动完成的文本框中放置一个事件处理程序,以防止 Enter 按键向下传递,如下所示:
PROBLEM SOLVED
My solution was to put an event handler on the text boxes that were autocomplete to prevent the Enter keypress being passed downward, like this: