如何设置和删除默认 Enter Click on my page
如何从页面中删除默认 Enter Click。
那就是我的页面中有一个保存按钮,即“提交”按钮。 当我单击 Enter 时,它总是点击“保存”按钮。即使我正在做别的事情。
任何人都可以告诉我如何从我的页面中删除此默认输入点击。
例如:
我有带有可过滤列的网格
当我在网格上进行过滤时,其设置焦点为“保存”按钮,即当我从网格中选择任何要过滤的内容时,其始终将焦点设置为“保存”按钮。
谢谢
How to remove Default Enter Click from page.
that is Have one save button in my page that is Submit button.
When I click Enter its allways hitting save button. even If i am doing something else.
Can any body tell me how to remove this Default Enter click from my page.
Ex:
I have Grid with Filterable Columns
When I am doing Filter on the Grid its setting focus to Save button that is when I select anyting to filter from the Grid its allways setting focus to Save button.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
e.preventDefault();
您可以停止默认行为Using
e.preventDefault();
you can stop the default behavior最简单的方法是将提交按钮替换为普通按钮,单击时使用 JS 代码提交表单:
缺点是用户将无法在没有启用 JS 的情况下提交,因此您可以在
标签。
Most simple way is replacing the submit button with ordinary button that submit the form with JS code when clicked:
Downside is user won't be able to submit without JS enabled, so you can add the ordinary submit button within
<noscript>
tags.