获得jquery对象数组中的某个jquery对象方法。
方法是:$("").eq(index) index为下标。
而 $("img")[0]只能返回html对象非jquery对象
<script>
$(function(){
alert($('img').eq(3).attr('src'));
});
</script>
<body>
<img src='1.jpg'/>
<img src='2.jpg'/>
<img src='3.jpg'/>
<img src='4.jpg'/>
<img src='5.jpg'/>
</body>