我有下面的代碼片段從一個div訪問第二個元素
<div class='container'>
<a href=''>
<img alt='' class='image0' src='images/Gallery/gallery-01.jpg' title='info'/>
</a>
<a href=''>
<img alt='' class='image1' src='images/Gallery/gallery-01.jpg' title='info'/>
</a>
<a href=''>
<img alt='' class='image2' src='images/Gallery/gallery-01.jpg' title='info'/>
</a>
</div>
我可以用
$('.container a:first')
或$('.container a:last')
訪問第一個和最後一個元素,但我怎麼能訪問第二錨標記在div上? 。
+1使用'eq'功能;它是目前較快的方法,因爲'querySelectorAll'不支持'eq'選擇器。 – lonesomeday
嘗試添加一個點到第二個類,但stackoverflow不允許它。 – nasty
非常感謝,它的工作 – userRaj