如何在数字插入中使用逗号,这样就不会破坏我的输入字段

时间:2015-04-09 13:33:22

标签: javascript jquery calculator date-arithmetic

我已经创建了一个计算表格,并且已经用它运行了一些A B测试,我注意到很多人在一个领域要求" Total Donors"将尝试放置"10,000"而不是10000

无论如何我可以制作它,所以可以放入逗号,但在JS中被忽略和未读?因此它向用户显示10,000,但我的脚本仍将其显示为10000。它必须在多个领域完成,是否有全球解决方案?

我不知道足够的JS来弄清楚如何开始攻击这个问题。我想象它必须是某种类型的代码来计算字符串值,然后在内部弹出逗号,以便它作为数字返回。

我用作示例的字段也会根据输入的数量为总计添加奖励积分。由于计算形式将由各种规模的代理商使用,我们需要添加此等级以使其更大拥有更多捐赠者的公司可以获得更多积分,因为较小的公司不会因其总分而受到惩罚。

小公司的总分:400

适用奖金的公司的总分:420

奖金总额:

• val < 10001 = + 0
• val >= 10001 and < 25001 = + 10
• val >= 25001 and < 50000 = + 15
• val >= 50000 = + 2

我的输入看起来像这样(为了便于阅读而拆分):

<fieldset class="webform-component-fieldset form-wrapper" id="webform-component-constituent-base">

    <legend><span class="fieldset-legend">Constituent Base</span></legend>

    <div class="fieldset-wrapper"><div class="form-item webform-component webform-component-textfield" id="webform-component-constituent-base--total-constituents">

    <label for="edit-submitted-constituent-base-total-constituents">Total Number of constituents in your database </label>

    <input type="text" id="edit-submitted-constituent-base-total-constituents" name="submitted[constituent_base][total_constituents]" value="" size="60" maxlength="128" class="form-text" />
    </div>
    </div></fieldset>

我对此字段的计算

var donorTotal = jQuery("#edit-submitted-constituent-base-total-constituents").val();
    if(donorTotal)
    {
        donorTotal = parseFloat(donorTotal);
    }
    else
    {
        donorTotal = 0;
    }

    grade += getBonusDonorPoints(donorTotal);

    // End total # of donors

奖励积分功能:

function getBonusDonorPoints(val)
{
    if(val < 10001)
    {
        return 0;
    }
    else if(val >= 10001 && val < 25001)
    {
        return 10;
    }
    else if(val >= 25001 && val < 50000)
    {
        return 15;
    }
    else if(val >= 50000)
    {
        return 20;
    }
}

感谢您帮助我们指点我并回答!

2 个答案:

答案 0 :(得分:2)

所以请替换逗号并确保使用数字而不是字符串。

Number(jQuery("#edit-submitted-constituent-base-total-constituents").val().replace(/,/g,""));

答案 1 :(得分:0)

我会通过删除任何不是数字的东西来解决这个问题。这适用于SSN,电话号码,邮政编码等诸如此类的领域,有利于这些领域的国际化。

function justTheNumbers(s) {
  return s.replace(/\D/g, '');
}