私はタイプとブランドと呼ばれるHTMLで2つの選択ボックスを持っています。型が変更されると、私はonchangeイベントを使用してサーバーへのajax要求を作成し、型フィールドで製品を生成するブランドを取得します。それはすべて正常に動作しているが、私はブランドの選択で取得したデータを読み込む必要があり、私はタイプとブランドの選択ボックスを含む複数の行を持っているので、それを行う方法がわからない。変更された型と同じ行の次の選択要素を見つけるにはどうすればよいですか?jQuery次の行の要素を選択
私のコード HTML:
<tr>
<td>
<select id="type" onchange="on_part_type_changed(this)" name "type[]"> --[options]-- </select>
</td>
<td>
<select id="brand" name="brand[]"></select>
</td>
</tr>
Javascriptを:
function on_part_type_changed(selectObject) {
// ajax call here (works)
// now need to update the brand select that is on the same row as selectObject (jQuery)
}
このように、http://www.codexworld.com/dynamic-dependent-select-box-using-jquery-ajax-php/ – rahulsm
'$(event.target).next( 'select').html( ...) 'または' $(this).next( 'select').html(...) ' – Rajesh
' type'と 'brand'の複数のIDを持つことはできません – Justinas