我對這個解決方案看起來相當不錯,但我驚奇地找不到任何東西。也許我只是沒有尋找合適的詞彙。我發現了一些關於通過元素獲取索引的問題,但我需要相反的。通過索引使用Javascript獲取HTML順序列表中的元素
我正在嘗試使用JavaScript和jquery通過列表中的索引獲取有序列表中的元素。舉例來說,如果我有這樣的名單:
<ol>
<li>Zero</li>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
我希望能夠通過它的1
指數來獲得其指數爲0,或者第二個(One
)的第一個(
Zero
)
到目前爲止,我已經嘗試了幾件事情:基於關閉使用該ID在列表中得到一個對象的索引的
一個簡單的函數。
elem = list.index(0); //To get the first element, but this is not a thing.
一個循環是這樣的:
//elem is the element I am currently at. //Starting at the last element and going to the first. var elem = list.getLastChild(); //But list.getLastChild() is apparently //not a thing although it is here ([w3c link][1]). //Start at 0 and go to the index //(may/may not need the = before num, but I think I do) for(var i=0; i<=num; i++){ //Set elem to it's previous sibling elem = elem.getPreviousSibling(); //getPreviousSibling is probably not a thing as //well but I couldn't get that far before it broke anyway. } //Return the element at the index return elem;
那麼,有沒有辦法做到這一點? 謝謝。
+1好的答案 – TGH
這個答案給我我想要的東西(的部分在for循環中)。 @TGH給了我別的東西。我不知道爲什麼,但它確實如此。 –
@ maptwo3你是什麼意思?你正在使用第n個孩子....?在這種情況下,在循環中,如果使用'n-child',那麼'+ 1'也需要小心,特別是有不同類型的同胞。這種類型的情況將會來救援。但是你總是可以使用':eq' – PSL