不允许用户在 Flex 文本输入框中输入带小数的零

发布于 2024-10-15 09:33:34 字数 139 浏览 2 评论 0原文

我在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 技术交流群。

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

发布评论

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

评论(3

风吹过旳痕迹 2024-10-22 09:33:35

只需执行 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.

扛刀软妹 2024-10-22 09:33:35
var n:Number = Number(textInput.text);
if (!isNaN(n)) {
  // do whatever
}
var n:Number = Number(textInput.text);
if (!isNaN(n)) {
  // do whatever
}
对你的占有欲 2024-10-22 09:33:35

我已经这样做了,如下所示
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.

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