私が達成しようとしていること:
から 0.09 を減算したい:
<span class="item_price cd_price">0.53</span>
入力が
<input type="text" value="50" class="item_Quantity cd_quantity">
100 を超えている場合。
私が試したこと:
$('.cd_quantity').blur(function(){
if ( $(this).val() >= 50 && $(this).val() <= 99 ) {
$('.cd_price').text('0.53')
}
if ( $(this).val() >= 100 && $(this).val() <= 199 ) {
$('.cd_price').text('0.44')
}
})
これはスパンの内容を置き換えるだけですが。そして、私はクエリの合計についてあまりよく知りません。
よろしくお願いします!