jquery中如何转移焦点?
我的表单中有一个字段,然后有一个按钮。我在 mozilla 中遇到一些焦点问题。所以,我决定使用jquery的focus evnet来实现。 $('.button-id').focus();
对我不起作用。那么,我可以在 jquery 中这样做吗: 当有人在输入字段中书写时,当点击输入关键字时,焦点从输入字段转移到按钮。
I have a field and then a button in my form. I have some focus problem in mozilla. So, I decided to do it using focus evnet of jquery. $('.button-id').focus();
is not working for me. So, can i do this in jquery:
As some one writing in the input field and when hit enter keyword the focus shifts from input field to button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在输入字段中输入
type="submit"
,浏览器应该会自动执行此操作。然后,如果您希望按钮执行除提交表单之外的其他操作,您可以处理提交事件:
If you give your input field
type="submit"
, browsers should do this automatically.Then, if you want your button to do something other than submit the form, you can handle the submit event: