如何编写一个选择器来查找第一个“输入”.在类为“x”的元素之后

How to write a selector to find the first "input" after an element with class "x"

本文关键字:输入 之后 元素 第一个 何编写 一个 查找 选择器      更新时间:2023-09-26

我想选择样式类为"x"的元素后面的第一个input框。我要选择的元素是而不是 input框的子元素

nextAll:first配合使用。.siblings()也会选择类为x的元素之前的元素。

$(".x").nextAll("input:first")

我明白了:

$(".x").siblings("input:first")