ユーザーがデータベースから指定ドロップダウン値を選択した後に給与を生成したいとします。次のように 選択したドロップダウン関連の値をテキストボックスに取得
私のdb strucutureは次のとおりです。
employee:
emp_id dep_id
1 1
2 1
designation:
dep_id des_name salary
1 accountant 20000
これは私のhtmlコードです:
<div class="form-group">
<label class="control-label col-lg-2" for="initial">Designation :</label>
<div class="col-lg-3">
<select class="form-control input-sm" name="classification" id="classification" onchange="changeValue();">
<?php while($row3 = mysqli_fetch_array($result3)):; ?>
<option><?php echo $row3[2]; ?></option>
<?php endwhile; ?>
</select>
<span class="error_form" id="classification_error_message"></span>
</div>
<label class="control-label col-lg-2" for="basicSalary">Basic Salary :</label>
<div class="col-lg-3">
<input type="text" class="form-control input-sm" name="basicSalary" id="basicSalary" placeholder="0.00">
</div>
</div>
JavaScriptでそれを行うのに十分に簡単ですが、質問はHTML – RamRaider
私は私のhtmlコード – lak
'changeValue'関数が何をするのかを追加し、任意の詳細を欠い? – RamRaider