0
私は "77600"のような単純なintを持っています。 "77 600"(基本的には何千もの後に簡単な空白を追加する必要があります)に変換します。JSの金額形式に変換する方法
tmp_total = parseInt(tmp_total,10); //77600
tmp_total = ...here goes some magic...;
$('#chekout_total #total').text(tmp_total);