AutoNumeric JQuery 插件一旦焦点丢失就不允许插入小数点

发布于 2024-11-04 08:49:36 字数 318 浏览 5 评论 0原文

我正在使用 jQuery autoNumeric 插件自动以货币格式显示数字。它工作正常并将数字转换为货币。但是,一旦我从字段中失去焦点,然后我再次进入该字段,它就不允许我输入小数点。

有什么想法吗?

这是我的代码:

$('#Amount').autoNumeric();

<input id="Amount" name="Amount" class="auto"/>

提前致谢。

I am using jQuery autoNumeric plugin to format number automatically in currency. It's working fine and converts number to currency. But once i loss focus from field and again i go to that field at that time it's not allowing me to type decimal point.

Any idea for this?

Here is my code:

$('#Amount').autoNumeric();

<input id="Amount" name="Amount" class="auto"/>

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风流物 2024-11-11 08:49:37

也许这会对你有所帮助。请

$('#Amount').autoNumeric('init',{aSign: '₹', dGroup: 2 });

在此处尝试此操作,当您单击文本框时,应启动 autoNumeric。然后您可以设置货币符号等选项

May be this will help you . please try this

$('#Amount').autoNumeric('init',{aSign: '₹', dGroup: 2 });

here autoNumeric should be initiated when you are clicking on text box. Then you can set options like currency symbol

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文