請回答以下問題充分利用數據庫中的值上選擇下拉菜單中的文本框
我想上選擇的選項,從數據庫中的信息,並顯示相關的選擇選項相應
<table border="1" class="form" id="dataTable">
<tbody>
<tr class="vd_bg-green vd_white" id='row_0'>
<td><input name="chk" type="checkbox"></td>
<td><select id="product_name" name="product_name" oninput=
"calculate('row_0')" required="" style="width: 180px; color: black">
<option>//options from database</option>
</select></td>
<td><input id="description" maxlength="70" name="description" oninput=
"calculate('row_0')" required="" style="width: 260px; color: black" type=
"text"></td>
<td><input id="price" name="price" oninput="calculate('row_0')" required=""
style="width: 80px; color: black" type="text"></td>
<td><input id="quantity" name="quantity" oninput="calculate('row_0')"
required="" style="width: 40px; color: black" type="text"></td>
<td><input id="disc_rate" name="disc_rate" oninput="calculate('row_0')"
required="" style="width: 40px; color: black" type="text"></td>
<td><input id="total_pro" name="total_pro" onchange="calculate('row_0')"
readonly="readonly" style="width: 80px; color: black" type="text"></td>
</tr>
</tbody>
</table>
你有沒有嘗試過從你身邊?請在這裏分享一些代碼。 –
我在jsp上做它 – optimus
是的,我已經嘗試 – optimus