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')
、ここで使用できる糖衣構文があるかどうか疑問に思いました。