<form name="cost">
<table border="1">
<tr>
<td>Cost</td>
<td><input type="text" name="cost" /></td>
</tr>
<tr>
<td>Discount</td>
<td><input type="text" name="discount" /> (<span id="discount2"></span>)%</td>
</tr>
<tr>
<td>Net Cost</td>
<td><input type="text" name="net" /></td>
</tr>
</table>
</form>
大家好,我真的需要javascript编程的帮助。表格的过程是:
- 在成本中放入一些
- 然后放多个折扣(自动计算 span#discount2=cost*discount/100)
- 净成本自动更新 = 成本折扣
我尝试了很多次,但没有运气加上缺乏 javascript 知识。请帮忙。