$('a').find('b:first')、$('b:first','a')等效,获取每个a下面的第一个b
$('b:first, a')获取a和第一个b(注意引号)
$('a b')类似$('a').find('b')但是只取了a下面的第一个b(只有一个)
已经过测试