我需要使用jQuery計算輸入值。如果輸入的GValue是100和選定的百分比爲10%,則在最終的值它應該顯示的110的合計值這應該是這樣的100 * 10%+ 100 = 110。使用jQuery計算HTML
value
<input type="text" name="gvalue" class="input" required/>
Percentage
<select name="percent" id="percent" class="input" onchange="setStates();">
<option value="Country" selected>Select Percentage</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
</select>
Final Value
<input type="text" name="flvalue" class="input" id="#total" required/>
我需要它有另一個查詢<選擇name = onchange事件「百分比「 id =「percent」class =「input」onchange =「setStates();」> – udhay
@udhay在該功能中做同樣的工作 –
感謝兄弟,這不是一個錯誤還有另一個錯誤 – udhay