<div>Zero-th <span></span></div>
<div>First <span></span></div>
<div>Second <span></span></div>
<script>
$( "div" )
.attr( "id", function( arr ) {
return "div-id" + arr;
})
.each(function() {
$( "span", this ).html( "(id = '<b>" + this.id + "</b>')" );
});
http://api.jquery.com/jquery/
$('span', this)
等於
$(this).find('span')
谢谢,已经明白了
同时选中多个元素、等同于$('span')+$(this)
正确答案见楼上。。。。