プライマリドロップダウンが変更されたら、それに応じて他のドロップダウンを変更します。プライマリドロップダウンを選択し、他のドロップダウンで同じ値のオプションを選択します。
しかし、私は、第二は、それに応じて値を変更するには失敗しながらのみ第一の他のドロップダウンがに取り組んでいる理由を知りません。私は 私は2番目のドロップダウンの名前を1番目のドロップダウンと同じに変更した場合、それが動作することを認識しています。
しかし、それらはdbに保存される異なるフィールドであるため、名前は異なる必要があります。
解決方法はありますか。どうもありがとう。
function setDropDown() {
var index_name =
document.getElementsByName('ForceSelection')[0].selectedIndex;
var others = document.getElementsByName('Qualifications');
for (i = 0; i < others.length; i++)
others[i].selectedIndex = index_name;
var others2 = document.getElementsByName('Qualifications2');
for (i = 0; i < others2.length; i++)
others2[i].selectedIndex = index_name2;
}
Primary dropdown<select name="ForceSelection" id="ForceSelection" onChange="javascript:return setDropDown();">
<option value="" selected>Select</option>
<option value="treatmentid1">treatmentname1</option>
<option value="treatmentid2">treatmentname2</option>
</select> other dropdown
<select id="Qualifications" name="Qualifications">
<option value="select">select</option>
<option value="treatmentid1">treatmentname1</option>
<option value="treatmentid2">treatmentname2</option>
</select> other dropdown2
<select id="Qualifications2" name="Qualifications2">
<option value="select">select</option>
<option value="treatmentid1">treatmentname1</option>
<option value="treatmentid2">treatmentname2</option>
</select>
あなたはスニペットを実行しましたか? 'Uncaught ReferenceError:others2は定義されていません '。あなたは変数を 'others1'と定義し、次に' others2'にアクセスしようとしました –
はそれを変更しましたが、それでも何か問題がありますか? – Codezzz
スニペットを実行しましたか? 'Uncaught ReferenceError:index_name2が定義されていません。 'あなたは 'index_name2'を定義していません。 –