jquery,将焦点设置在页面上第一个启用的输入或选择或文本区域上

发布于 2024-10-06 00:46:39 字数 210 浏览 2 评论 0原文

这相当简单。我想将焦点设置到页面上第一个启用且非隐藏的控件。

对于文本框,我有

$("input[type='text']:visible:enabled:first").focus();

但我想获得“所有”表单输入控件:文本框、复选框、文本区域、下拉菜单、选择器中的单选按钮以获取第一个启用且非隐藏的控件。有什么建议吗?

It's fairly straightforward. I want to set focus to the first enabled and not hidden control on the page.

For a textbox, I have

$("input[type='text']:visible:enabled:first").focus();

But I want to get "all" form input controls: textbox, checkbox, textarea, dropdown, radio in my selector to grab the first enabled and not hidden control. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

聽兲甴掵 2024-10-13 00:46:39
$(':input:enabled:visible:first').focus();
$(':input:enabled:visible:first').focus();
月光色 2024-10-13 00:46:39

作为乔丹答案的延伸,

$(':input:enabled:visible:not([readonly]):first').focus();

这也排除了只读输入

As an extension of Jordan's answer

$(':input:enabled:visible:not([readonly]):first').focus();

This one also excludes readonly inputs

温柔女人霸气范 2024-10-13 00:46:39

这是更全面一点:

$('form :input:text:visible:not(input[class*=filter]):first').focus();

Lamen:将光标聚焦在可见表单中的第一个文本输入中,但如果它使用名为“filter”的类,请忽略它!

This is a little more comprehensive:

$('form :input:text:visible:not(input[class*=filter]):first').focus();

Lamen: Focus the cursor in the first text input in a form that is visible, but if it use the class named "filter", ignore it!

影子是时光的心 2024-10-13 00:46:39

试试这个:

$("input[type='text']:enabled","another selector","another selector").first().focus();

Try this:

$("input[type='text']:enabled","another selector","another selector").first().focus();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文