相当于jquery/javascript中的PHP函数number_format

前端之家收集整理的这篇文章主要介绍了相当于jquery/javascript中的PHP函数number_format前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP功能
function formatNumberForDisplay($number,$decimal=0,$decimalSeperator='.',$numberSeperator=',')
{
     return number_format($number,$decimal,$decimalSeperator,$numberSeperator);
}

我的需要:
任何机构可以给我建议在jquery / javascript中的等效功能

提前致谢。

解决方法

这是你想得到的?
yourFloatVarHere.toFixed(2);

瞧。

原文链接:https://www.f2er.com/jquery/184113.html

猜你在找的jQuery相关文章