Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
番号56675.456
56675.456
この数値を Format でフォーマットしたい:{0:$###.##}
{0:$###.##}
String.localeFormat()JQuery での使用
String.localeFormat()
期待される結果:$56675.46
$56675.46
function convert(num) { return "$" + (num.toFixed(2)); } convert(56675.456)
デモ