我正在尝试使用$
将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"/>
有人能帮我吗?
最佳答案
我认为您的代码运行良好,您只需添加jquery-formatcurrency
库:
https://jquery-formatcurrency.googlecode.com/files/jquery.formatCurrency-1.4.0.min.js
或者下载它会更好,因为googlecode.com正在被弃用,比如下面评论中提到的@charliefl。
参见fiddleHERE中的实现。