停止“输入”使用 jquery ui 自动完成小部件时的关键提交表单
我有一个使用 jquery 自动完成 UI 插件的表单, http://jqueryui.com/demos/autocomplete/ ,一切都很顺利,除了当您按 Enter 键在自动完成列表中选择一个项目时,它会提交表单。
我在 .NET Webforms 站点中使用它,因此可能存在与 .NET 注入的表单关联的 javascript 处理,该处理会覆盖 jQuery 内容(我在这里推测)。
I've got a form that uses the jquery autocomplete UI plugin, http://jqueryui.com/demos/autocomplete/, which all works sweet except when you press the enter key to select an item in the autocomplete list, it submits the form.
I'm using this in a .NET webforms site, so there may be javascript handling associated with the form that .NET is injecting that is overriding the jQuery stuff (I'm speculating here).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您可以在其上使用事件处理程序。
请参阅: jQuery 事件按键:按下了哪个键?
还:http://www.cambiaresearch.com/c4/702b8cd1-e5b0-42e6-83ac-25f0306e3e25/javascript-char-codes-key-codes.aspx 查看键码列表
You can use an event handler on it.
see: jQuery Event Keypress: Which key was pressed?
also: http://www.cambiaresearch.com/c4/702b8cd1-e5b0-42e6-83ac-25f0306e3e25/javascript-char-codes-key-codes.aspx for list of keycodes
一种方法是处理按键,如果是回车键则忽略它。
One way is to handle key press and ignore it if it is the enter key.
您可以尝试以下操作:
这将仅在输入文本框中禁用 Enter 键
You could try this:
This will disable the Enter key only on the input text box
答案王牌帖子帮助我解决了我的问题。不过您应该注意到,ace 提供的代码必须存在于
$('input').autocomplete(*****)
之前,否则您将不会收到任何效果。The answer ace post helped me solve my problem. While you should notice that the code ace provide must exist before
$('input').autocomplete(*****)
, otherwise you would not receive any effect.如果您仍希望按 Enter 键提交,则在进行自动完成选择后,
If you still want the enter key to submit, after the autocomplete selection is made,
一行代码:
这里有 3 件事与接受的答案不同:
event.which
,因此无需测试event.keyCode
和event .which
.$.ui.keyCode
访问命名键代码,这使其更具可读性。One line of code:
3 things that are different here than the accepted answer:
event.which
, so no need to test forevent.keyCode
andevent.which
.$.ui.keyCode
, which makes it more readable.