nStr    =   12.00;
alert(typeof(nStr));// getting number
x = nStr.split('.');
// Other than string Split function Through an error,
nStr    =   12.00;
nStr    +=  '';
alert(typeof(nStr));// getting string
x       =   nStr.split('.');
x1      =   x[0];
x2      =   x.length > 1 ? '.' + x[1] : '';
alert(x1+x2);

//Expected Output is 12.00


我得到了临时输出编码(不是经过优化的编码)

nStr += '';
x = nStr.split('.');
x1  = x[0];
x[1]= (x[1].length == 1) ? '.' + x[1] + '0' : '.' + x[1];
x2  = x.length > 1 ? x[1] : '.00';
alert(x1+x2);               //  12.00

最佳答案

12.00是12,您无法更改该事实。

看起来您正在寻找的是JavaScript的toFixed()方法:

nStr    =   12;
alert(nStr.toFixed(2));


这将提醒您“ 12.00”。传递给该方法的数字确定小数点后将显示多少位数。

值得一提的是,toFixed方法还将舍入数字,例如,如果在上面的示例中nStr将为12.5283,它将在警报中显示12.53。

07-24 09:26