Ein kleiner Selektor mit .next() jquery-Methode macht mich verrückt.Wählen Sie die nächste "sichtbare" Geschwister aus der aktuellen Zeile
Die Geschichte ist so, ich benutze Bootstrap-Filter mit jquery auf Tabellenzeilen. Wenn der Filter ausführt, ändert sich das Anzeigeformat Attribut table-row, wie folgt aus:
<tr class="activated" style="display: table-row;">
Nun, was alles, was ich von JQuery wollen ist, die nächste verfügbare TR wählen, aus dem aktuellen TR, das Display hat = Tischreihe.
Ich habe mit folgendem versucht:
$(getSelectedRow()).next(":not(:hidden)") returns []
$(getSelectedRow()).next(":visible") returns[]
$(getSelectedRow()).next("tr[display==visible]") returns []
ich als nächstes verwendet werden soll, weil ich nächste erste Geschwister wollen. Hier
ist die HTML-
<table class="table table-hover navigateable focused" id="bookmarkTable">
<thead>
<tr>
<th class="text-center">Bookmarks</th>
</tr>
</thead>
<tbody class="searchable" id="bookMarkResultGridView">
<tr class="activated" style="display: none;">
<td class="word-wrap" data-rowindex="0" data-tabid="0"
data-url="http://gitready.com/" style="cursor: pointer;">git
ready » learn git one commit at a time<br>
<small class=
"text-muted word-wrap">http://gitready.com/</small></td>
</tr>
<tr class="activated" style="display: none;">
<td class="word-wrap" data-rowindex="1" data-tabid="0"
data-url="http://inthecheesefactory.com/blog/android-design-support-library-codelab/en"
style="cursor: pointer;">Codelab for Android Design Support
Library used in I/O Rewind Bangkok session :: The Cheese
Factory<br>
<small class=
"text-muted word-wrap">http://inthecheesefactory.com/blog/android-design-support-library-codelab/en</small></td>
</tr>
<tr class="activated" style="display: none;">
<td class="word-wrap" data-rowindex="2" data-tabid="0"
data-url="https://github.com/rogerta/secrets-for-android"
style="cursor: pointer;">Store your all Password in Android
App<br>
<small class=
"text-muted word-wrap">https://github.com/rogerta/secrets-for-android</small></td>
</tr>
<tr class="activated" style="display: table-row;">
<td class="word-wrap" data-rowindex="3" data-tabid="0"
data-url="https://guides.codepath.com/android/Google-Play-Style-Tabs-using-TabLayout#design-support-library"
style="cursor: pointer;">Google Play Style Tabs using TabLayout
| CodePath Android Cliffnotes<br>
<small class=
"text-muted word-wrap">https://guides.codepath.com/android/Google-Play-Style-Tabs-using-TabLayout#design-support-library</small></td>
</tr>
</tbody>
</table>
es wird mir nicht den nächsten Geschwister geben - stattdessen kann es das gleiche Objekt zurück, wo ich bin – codebased
Ich bin nicht sicher, ob Sie checked jsfiddle, könnte ein Browser-Problem sein, das nicht unterstützt wird oder etwas, aber Sie können deutlich sehen, dass es das zweite sichtbare Geschwister auswählt, wenn Sie es in Firebug überprüfen. So sieht es in meinem Browser aus: http://imgur.com/GXITzJR Aber ich verwende diese ausgewählte Klasse, sodass das zweite Beispiel möglicherweise nicht funktioniert. – pegla