いくつかのリスト項目を反復処理するときに、ネストされた foreach ループ内で各「$(this)」に相当するものをターゲットにする方法を見つけようとしています。これが私の問題の例です:
$('li').each(function(){
// I believe $(this) would target each li item...
$(this).children("li").each(function(){
// ... but how can I target each of these li items? Doesn't $(this) target the original loop?
});
});