Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带完成按钮的数字键盘。但用户只能选择不带逗号的数字。有没有办法让数字键盘带有完成按钮(我有),与标点符号集成,或者至少一个逗号?
您的问题意味着您正在做一些格式化的数字。然后,您将使用固定的小数位数似乎是一个安全的假设(因为看到具有固定小数位数的格式化数字比没有更常见)。
如果这是真的,那么您根本不需要.或,按钮。你可以从固定的小数位数开始,然后把东西移过来。例如,假设您要输入数字“4,238.07”。
______.__ //type 4 ______._4 //type 2 ______.42 //type 3 _____4.23 //type 8 ____42.38 //type 0 ___423.80 //type 7 _4,238.07