不允许用户在 Flex 文本输入框中输入带小数的零
我在flex中有一个文本输入框。如果文本输入框的文本>0,我想调用一个函数。我已将文本解析为整数,parseInt(str.text),其中 str.text 为 0.03(类似这样),然后它变成零,因为我正在解析为整数。
任何帮助表示赞赏。
i have a text input box in flex. i wanted to call a function if the text of text input box is >0. i have parsed the text into integer ,parseInt(str.text) where str.text is 0.03(something like this) then it becomes zero, as i am parsing into integer.
any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需执行 Number(str.text) 即可,这将为您提供一个浮点数。使用 isNaN() 检查它是否确实是已解析的数字。
Just do Number(str.text), that will give you a float. Use isNaN() to check if it's actually a number that was parsed.
我已经这样做了,如下所示
parseFloat(str.text)>0
{
// 语句;
}
因此,如果用户输入 0.00 或 00.00 或 00000.0 或 000.000 将不允许,如果他输入 0.01 或 0.89 或任何大于零的值将被允许。
无论如何,感谢您的回复。
i have done it like below
parseFloat(str.text)>0
{
// statements;
}
so thts if user enters 0.00 or 00.00 or 00000.0 or 000.000 it will not allow , if he enters 0.01 or 0.89 or anything greater than zero will be allowed.
Anyway thanks for the response.