-1
我有一張從python django數據庫提取數據的表第一列是與產品名稱對應的選擇框我希望根據產品選擇更改價格列的值我如何做到這一點基於選擇框索引的Python Django更改值
<table>
{% for item in items %}
<tr>
<select name="sel0" id="selectbox" onchange="">
{% for product in products %}
<option value="{{ product.id }}" id="optionval">{{product.name}}</option>
{% endfor %}
</select>
<td>price</td>
<td>Quantity</td>
<td>Total</td>
</tr>
{% endfor%}
</table>