0
所以我想使用jQuery選擇這樣一個元素的非固定兄弟:的jQuery選擇父
<div>
<ul>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
<ul>
</div>
<div>Item to be operated on when the first li is clicked.</div>
<div>Item to be operated on when the second li is clicked.</div>
<div>Item to be operated on when the third li is clicked.</div>
當然,我期待開始我的jQuery的功能與
$('ul li')
有沒有辦法做到這一點,沒有多個DOM潛水?我基本需要的是「next()。next()。next()」,如果它不只是直接操作兄弟。假設我無法移動標記。謝謝。
需要'指數()+ 1',列表中包含了'div'內以及 – billyonecan
@billyonecan:此HTML需要一些類。謝謝,我會加入。 – Blender