搜索所有段落中的后代 span 元素,并将其颜色设置为红色:
$("p").find("span").css('color','red');详情:http://www.w3school.com.cn/jquery/traversing_find.asp
.find("span")