用于数字检查的文本输入验证

发布于 2024-11-04 09:26:07 字数 510 浏览 0 评论 0原文

我在 Flex 中看到一个奇怪的问题。我需要将所有文本输入字段重置为 0 一旦 用户提交要计算的值。在方法中

     private function calculate():void {
       resetToZero();
       var num:Number = parseFloat(s21.text);    
      }  


     private function resetToZero():void {
      //multiple if statements.... existing here..    
     if(s2l.text.length ==0);
 {  
    Alert.show("length is:" + s2l.text.length);
    s2l.text="0";
 }
}

,当我运行程序时,我收到警报 - 长度为 1。当长度为 1 时,它是如何进入 if 语句的?这种行为确实令人困惑,需要对此进行一些说明。还有其他方法可以实现上述功能吗?

I am seeing a strange issue in flex. I need to reset all text input fields to 0 once the
user submits the values to be calculated. In the method

     private function calculate():void {
       resetToZero();
       var num:Number = parseFloat(s21.text);    
      }  


     private function resetToZero():void {
      //multiple if statements.... existing here..    
     if(s2l.text.length ==0);
 {  
    Alert.show("length is:" + s2l.text.length);
    s2l.text="0";
 }
}

When I am running the program I am getting the alert - length is 1. How is that it when length is 1 it is entering the if statement?. The behavior is really confusing and need some light on this. Is there any other way to achieve the above functionality?

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

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

发布评论

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

评论(1

国粹 2024-11-11 09:26:07

这是因为 IF 语句终止,

if(s2l.text.length ==0);

从末尾删除 ; 作为

if(s2l.text.length==0)

希望有帮助

Its because of IF statement, which is terminated

if(s2l.text.length ==0);

Remove ; from end as

if(s2l.text.length==0)

Hopes that helps

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