我希望显示随用户更改小时数而更改的2个价格。我几乎没有HTML经验,所以我在努力学习这段代码。 "结果"输出工作正常,但"婚礼"输出根本没有变化。
<form oninput="result.value=parseInt(b.value)*parseInt(150)+parseInt(499)">
<form oninput="wedding.value=parseInt(b.value)*parseInt(150)+parseInt(599)">
<form><input max="12" min="2" name="b" type="number" value="3" />
<table style="width: 100%;">
<tbody>
<tr>
<td>Price</td>
<td><strong>$<output name="result">949</output></strong></td>
<td><strong>$<output name="wedding">949</output></strong></td>
</tr>
答案 0 :(得分:1)
向一个oninput
属性添加多个语句,例如
<form oninput="result.value=parseInt(b.value)*parseInt(150)+parseInt(499);wedding.value=parseInt(b.value)*parseInt(150)+parseInt(599)">