我有一个带有this
变量的 jquery 对象的引用。我正在寻找一种将子选择器应用于对象的方法。
我正在使用$(this).find('table > tbody > tr > td')
,但我的目标是更像$('[Value of $(this) goes here somehow] > table > tbody > tr > td')
.
我意识到我可以做到$(this).children('table').children('tbody').children('tr').children('td')
,但我想知道是否可以在这里使用一些语法糖。