在我的代码中,我有一个变量myCash
,使用javaScript的h1
将其打印到innerHTML
元素中。我在网上找到了一个函数,它在数字末尾的每第三个字符后面加一个逗号,这样数字就更容易阅读了。我已经尝试了几个小时,现在将变量myCash
发送到函数中,然后将其打印在屏幕上。我无法让它发挥作用。
我已尝试在页面加载后或按下按钮时将新变量警告到屏幕,但我什么也得不到,警报甚至无法正常工作。这是逗号插入函数:
function commaFormatted(amount) {
var delimiter = ","; // replace comma if desired
amount = new String(amount);
var a = amount.split('.',2)
var d = a[1];
var i = parseInt(a[0]);
if(isNaN(i)) { return ''; }
var minus = '';
if(i < 0) { minus = '-'; }
i = Math.abs(i);
var n = new String(i);
var a = [];
while(n.length > 3)
{
var nn = n.substr(n.length-3);
a.unshift(nn);
n = n.substr(0,n.length-3);
}
if(n.length > 0) { a.unshift(n); }
n = a.join(delimiter);
if(d.length < 1) { amount = n; }
else { amount = n + '.' + d; }
amount = minus + amount;
return amount;
}
现在,当我希望我的变量发生变化时,我尝试了几种不同的方式,包括:
var newMyCash = commaFormatted(myCash);
alert(newMyCash);
和此:
alert(commaFormatted(myCash);
当然myCash
等于某个大数字;
这绝对没有!我在这做错了什么?
答案 0 :(得分:1)
答案 1 :(得分:0)
这不是我的功能,但我希望它可以帮到你。
function addCommas(nStr)
{
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
用法:
var newMyCash = addCommas( myCash ); alert( newMyCash );
答案 2 :(得分:0)
您很可能不会传入包含小数的数字,这是函数所期望的。
工作Demo