回答:
はい- parseFloat
。
parseFloat(document.getElementById(amtid4).innerHTML);
以下のための書式番号、使用toFixed
:
var num = parseFloat(document.getElementById(amtid4).innerHTML).toFixed(2);
num
これで、数値は小数点以下2桁でフォーマットされた文字列になります。
parseFloat('22w')
is 22
and parseFloat('w22')
isNaN
var formatter = new Intl.NumberFormat("ru", {
style: "currency",
currency: "GBP"
});
alert( formatter.format(1234.5) ); // 1 234,5 £
https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat
Intl.NumberFormat
それを釘付け。