我的HTML如何將價格限制在2個小數點
<div class="product-line">
<a href="#" alt="close" class="btn-close" title="Remove"><img alt="remove" src="img/close.png" /></a>
<input class="input-text" name="product-code" type="text" placeholder="Product Code" />
<input class="input-text" name="product-quantity" type="text" placeholder="Quantity" />
<input class="input-text" name="product-discript" type="text" placeholder="Discription of Product" disabled />
<label class="label-sign">£</label>
<input class="input-text price" name="product-price" type="text" placeholder="RRP Price" disabled />
<br>
</div>
我的JS代碼行
price = $(this).parent("div.product-line").find("input[name=product-price]").val(Number(price).toFixed(2) * quantity)
基本上,如果我乘例如40.2數量3,我得到的東西像120.600000000 ... 。我如何限制它到2個小數點。
數據通過JSON(由其他人制作)進入。
我是一個新手,JS
http://stackoverflow.com/questions/11832914/round-to-at-most-2-decimal-places-in- javascript – Aheinlein
不適合你的谷歌? –
OP已經使用toFixed,它只是在錯誤的地方,所以它不是真的重複。 – adeneo