クラスを選択してから、最初に親要素に移動せずthis
に取得しようとしています。that
tr
これは私のHTMLです:
<tr>
<td>
<div>some content</div>
<select class="this">
<option>1</option>
<option>2</option>
</select>
</td>
</tr>
<tr>
<td>
<div>some content</div>
<select class="that">
<option>1</option>
<option>2</option>
</select>
</td>
</tr>
これが私のjQueryです:
$('.this').each(function () {
var thisSelect = $(this),
thatSelect = $(thisSelect).next('.that');
console.log(thatSelect); // doesn't work
});
上記のコードを使用しようとしましたが、うまくいきませんでした。each
ページにこれらの選択要素のセットが複数あるため、関数を使用しています。