FormatCurrency不是函数

时间:2015-10-20 22:12:06

标签: javascript jquery html ajax format-currency

我正在尝试使用$将onblur事件的文本框值转换为jquery.formatCurrency-1.4.0.js货币,我的 javascript 功能如下所示:

$(document).ready(function()
{
    $('.currency').blur(function()
    {
        $('.currency').formatCurrency();
    });
});

HTML

<input type="textbox"  id="currencyField" class="form-control currency" placeholder="Enter Price"/>

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

我认为您的代码工作正常,您只需要添加jquery-formatcurrency库:

https://jquery-formatcurrency.googlecode.com/files/jquery.formatCurrency-1.4.0.min.js

或者下载它会更好因为googlecode.com被弃用就像@charliefl在评论中提到的那样。

请参阅 HERE 中的实施。