我正在尝试使用$
将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"/>
有人可以帮我吗?
答案 0 :(得分:0)
我认为您的代码工作正常,您只需要添加jquery-formatcurrency
库:
https://jquery-formatcurrency.googlecode.com/files/jquery.formatCurrency-1.4.0.min.js
或者下载它会更好因为googlecode.com被弃用就像@charliefl在评论中提到的那样。
请参阅 HERE 中的实施。