これに対する解決策をかなり探しましたが、驚くべきことに何も見つかりませんでした。適切な言葉を探していないだけかもしれません。要素ごとにインデックスを取得することについて多くの質問を見つけましたが、その逆が必要です。
私はjavascriptを使用しようとしています.jqueryは、リスト内のインデックスによって順序付けられたリスト内の要素を取得します。たとえば、次のリストがあるとします。
<ol>
<li>Zero</li>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
Zero
最初のもの ( ) をインデックス 0 で、または 2 番目のもの ( ) をインデックス1 で取得できるようにしたいと考えてOne
います。
これまでのところ、私はいくつかのことを試しました:
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;
これを行う方法はありますか?ありがとう。