在我的代碼,我有這樣的:ParseFloat混亂
<script language="javascript">
function addNumbers()
{
var collect = parseFloat(document.getElementById("Collect").value);
var current = parseFloat(document.getElementById("Current").value);
var Balance = document.getElementById("Bal");
Balance.value = collect + current;
}
</script>
如果,例如,輸入爲:123.12 + 12.22,餘額爲135.34 但是,如果輸入的是:123.00 + 12.00,平衡是135而不是135.00。
我應該添加什麼來實現第二個輸出樣本?
謝謝。
'toFixed(2)'.... –
@RoyiNamir - 爲什麼不回答? – jfriend00