gpt4 book ai didi

javascript - 将焦点设置在某个类名称的下一个元素的输入字段上

转载 作者:行者123 更新时间:2023-12-02 15:11:04 25 4
gpt4 key购买 nike

我试图将焦点集中在页面下一个具有 .search-options 类的元素中的第一个输入字段。

这就是我正在使用的,但它不起作用。

$(document).ready(function() {
$('.toggle-search-options').on('click', function() {
$(this).next('.search-options *:input[type!=hidden]:first').focus();
});
});

最佳答案

这与此非常相似:jQuery: Find next element that is not a sibling ,除非当前元素与您要查找的选择器不匹配。在这种情况下,您只需将其添加到选择中即可:

// Outside the event handler:
var $elements = $('.search-options *:input[type!=hidden]');

// Inside the event handler:
var $elementsWithCurrentElement = $elements.add(this);
$elementsWithCurrentElement.eq($elementsWithCurrentElement.index(this) + 1).focus();
<小时/>

如果您要查找的元素实际上是同级元素,请查看 Efficient, concise way to find next matching sibling? .

关于javascript - 将焦点设置在某个类名称的下一个元素的输入字段上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34798750/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com