easiest way is this, if you want all the elements
$('.aaa span');
jquery can nest selectors just like css can. also, if for some reason you need to loop
$('.aaa').each(function(){
x = $(this).find('span');
});
that will set x as the elements as a jquery object.