請參閱此HTML。jquery價值變化生活
<input type="text" name="amount1" value="10" />
<input type="text" name="amount2" value="5" />
<input type="text" name="total" value="" disabled="disabled" />
請參閱此代碼。 我確切想要的。 當I型在amount1文本框中一些值(INT), 自動value顯示在共箱,
當我把一些值AMOUNT2, 總應該顯示(amount1 + AMOUNT2)=值
我試圖與這個jQuery,但並沒有解決我的問題
$(document).ready(function() {
$('#amount1').keyup(function() {
$('#total').html('<input type="text" name="total" style="width: 49%;" value="' + $(this).val() + '"/>');
});
});
有人能幫助我。 太棒了!
@Bartdude我會更新它。謝謝。 – QMaster