货币 jQuery 的屏蔽输入
在我的网络应用程序中,我有一个名为“预算”的输入字段,用户可以在其中输入项目的建议预算。我需要创建一个屏蔽输入,以便在用户在输入字段中输入时自动将输入的金额转换为以下格式:
1 000
10 000
100 000
我在互联网上搜索过,但似乎没有找到必要的。有人能给我指出一个合适的插件或者建议一个自定义解决方案吗?
提前致谢。
In my web application I have an input field called "Budget" where users enter the proposed budget for a project. I need to create a masked input to automatically bring the entered amount to the following format while the user is typing into the input field:
1 000
10 000
100 000
I've searched throughout the Internet but don't seem to find the necessary one. Could anybody point me to a suitable plugin or maybe suggest a custom solution?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试以下任何一个:
http://plugins.jquery.com/tag/currency/
这些也可能包含您的内容正在寻找:
http://plugins.jquery.com/tag/mask/
Try any of these:
http://plugins.jquery.com/tag/currency/
These may also contain what you're looking for:
http://plugins.jquery.com/tag/mask/
我使用以下代码来归档货币格式,而不使用其他插件:
JSFiddle:
https://jsfiddle.net/gt2Ly5rt/6/
使用此脚本,用户将仅输入数字,脚本将自动放置小数点和千位分隔符(它被硬编码为 BRL 格式,但您可以自定义它)。
例如,如果用户输入:
希望它对某人有帮助。
I use the following code to archieve currency format without use of additional plugins:
JSFiddle:
https://jsfiddle.net/gt2Ly5rt/6/
With this script, the user will enter only numbers, the script will automatically place decimal and thousands separators (it is hardcoded to BRL format, but you can customize it).
For instance, if user types:
Hope it helps someone.
仅使用 Javascript 的简单解决方案。
Simple Solution using Only Javascript.
我使用这个(http://code.google.com/p/jquery-formatcurrency/< /a>) 在我的生产站点中,没有任何问题,并且 api 足够简单。
I use this one (http://code.google.com/p/jquery-formatcurrency/) in my production site and not had any issues with it and the api is simple enough.