我如何编写一个jQuery选择器来获取$(this)的子<input>?

AKW*_*KWF -3 jquery jquery-selectors

我试过了:

$(this).nextAll("input").get(0)
Run Code Online (Sandbox Code Playgroud)

它不仅不起作用,看起来如果它确实会有点过分.

Exp*_*lls 6

//child
$(this).children('input');

//descendant
$(this).find('input');
$('input', this);
Run Code Online (Sandbox Code Playgroud)

顺便说一下,.nextAll是兄弟姐妹.