jquery中如何转移焦点?

发布于 2024-10-07 06:58:50 字数 181 浏览 7 评论 0原文

我的表单中有一个字段,然后有一个按钮。我在 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 技术交流群。

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

发布评论

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

评论(1

裸钻 2024-10-14 06:58:50

如果您在输入字段中输入type="submit",浏览器应该会自动执行此操作。

然后,如果您希望按钮执行除提交表单之外的其他操作,您可以处理提交事件:

$("#form-id").submit(function() {
    //do something
    return false; //don't 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:

$("#form-id").submit(function() {
    //do something
    return false; //don't submit
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文