我的HTML結構:在數量和產品價格,總價格更新的基礎
<div class="pricesection">
<label id="productPrice">
<strong>
<span id="totalprice"> 129,00</span>
<span>$</span>
</strong>
</label>
<input type="text" value="1" name="am" id="quantity">
<button class="submitbtn" type="submit">add to Cart</button>
</div>
我的JS代碼:
$('#quantity').keyup(function(){
$('#quantity').each(function() {
var qty = $('#quantity').val();
var price = $('#totalprice').val();
var total = price * qty;
});
$('#totalprice').html(total);
});
我發現有很多的例子,不適合。 :-(
進入數量項目價格後,將自動更新。如果「0」,字母,「空」或取消原價必須恢復之後。
我總是得到「0」值回!
我任何幫助非常感謝!
有沒有需要每種方法。把它擺脫。 –