[JS]accounting.js
如果在Client計算時,需要做format的轉換,如呈現在TextBox上是需要經過Format的,而計算時,又需要把那些逗號去掉來計算。
計算完成後,又需要把數字Format後Assign進TextBox之中。
這時可利用accounting.js
筆者大多是使用accounting.unformat及accounting.formatNumber
以下是搭配jQuery來運算! 如下,
var totalFee = accounting.unformat(txtApplyFee.val())
+ accounting.unformat(txtEstimatedCost.val());
txtTotalFee.val(accounting.formatNumber(totalFee));
accounting.js的網站有詳細的介紹哦!
accounting.unformat("12,345,678.90"); // 12345678.9
accounting.formatNumber(5318008); // 5,318,008
Hi,
亂馬客Blog已移到了 「亂馬客 : Re:從零開始的軟體開發生活」
請大家繼續支持 ^_^