2010-05-28 80 views

回答

1

爲了展示它是如何工作與變量n:

$('.mydiv:eq('+n+') img') 

您使用+運營商在JavaScript中Concat的。

2

就快:

// Select all img elements in the 1st .mydiv: 
$('.mydiv:eq(0) img') 

// Select all img elements in the 3rd .mydiv: 
$('.mydiv:eq(2) img') 

:eq()更多的例子在http://api.jquery.com/eq-selector


要使用一個變量中:eq,請執行下列操作

// Select all img elements in the `n`th .mydiv: 
$('.mydiv:eq('+n+') img') 
+0

謝謝安迪!我會如何在'eq()'變量中創建這個數字? – Mohammad 2010-05-28 11:07:04

1
$("div.myclass:eq(n) img")