2つの選択ボックスがあり、異なる入力(またはテキスト)値を表示する必要があります。私は別の選択項目を選択すると、私はどのように私が価値を示すことができるのか分かりませんか? 例:最初の選択ボックスから1アイテムを選択し、2番目の選択ボックスから1アイテムを選択しました。選択したアイテムの値としてのテキスト値を結果として表示します。複数選択のイベントリスナー
コード:
<div class="form-group">
\t \t \t <label>Select</label>
\t \t \t \t <div class="form-group">
\t \t \t \t <select id="kisi"class="form-control" name="rezaractip">
\t \t \t \t \t \t <option value="1">1 </option>
\t \t \t \t \t \t <option value="23">23 </option>
\t \t \t \t \t \t <option value="96">96 </option>
\t \t \t \t \t \t
\t \t \t \t \t \t
\t \t \t \t \t \t </select>
\t \t \t \t \t </div>
\t \t </div>
<div class="form-group">
\t \t \t <label>Select</label>
\t \t \t \t <div class="form-group">
\t \t \t \t <select id="kisi2"class="form-control" name="rezaractip">
\t \t \t \t \t \t <option value="10">10 </option>
\t \t \t \t \t \t <option value="230">230 </option>
\t \t \t \t \t \t <option value="960">960 </option>
\t \t \t \t \t \t
\t \t \t \t \t \t
\t \t \t \t \t \t </select>
\t \t \t \t \t </div>
\t \t </div>
<input id="result1 " value="Show1" />
<input id="result2 " value="Show2" />