私は学校プロジェクトのためにJQueryを学習しています。TD入力値が以前のTD値を超えていないことを確認してください
私は残高を示すテーブルと、ユーザーが残高を支払うために自分の金額を入力する入力ボックスを持っています。ユーザーが金額を入力しているとき、金額以上の金額を望んでいません。ここで私はこれまで持っているものです。
HTML:
<table>
<tr class="arow">
<td class="balance">
20.00
</td>
<td class="otheramount">
Other Amount: <input class="forminput" type="number">
</td>
</tr>
<tr class="arow">
<td class="balance">
30.00
</td>
<td class="otheramount">
Other Amount: <input class="forminput" type="number">
</td>
</tr>
<tr class="arow">
<td class="t-currentbalance">
40.00
</td>
<td class="otheramount">
Other Amount: <input class="forminput" type="number">
</td>
</tr>
</table>
はJQuery:
$(".forminput").each(function() {
$(this).on("click change paste", function() {
var otherAmount = $(this).val();
var currentBalance = $(this).parent('td').prev('td.balance').html();
if (otherAmount > currentBalance) {
alert('You are over the balance amount!');
}
});
});
私は額の上に行く、私は未定義得続けます。私は両親にそれを変更し、私はランダムなデータの束を取得します。 !.each()
第二の必要性を:すべてのヘルプはそんなにお願いします〜