24

需要一个只接受数字的代码。输入时,必须检查代码是否为数字,如果不是,则必须删除输入的键或根本不输入

4

8 回答 8

31

查看 TextInput 类的限制属性。将其设置为“0-9”

于 2009-11-17T11:16:59.593 回答
13
   <s:TextInput id="textInput"
                restrict="0-9"
                widthInChars="20"
                maxChars="20" />
   <mx:TextInput id="textInput"
                restrict="0-9"
                widthInChars="20"
                maxChars="20" />
于 2009-11-17T11:33:20.297 回答
3

有一个名为 NumericStepper 的控件。

请参阅:http ://livedocs.adobe.com/flex/3/html/help.html?content=controls_11.html

如果您不希望那里有向上和向下箭头,您可以将它们的皮肤类设置为空。

干杯,狡猾

于 2011-11-06T13:20:02.733 回答
2
<?xml version="1.0"?>
<!-- Simple example to demonstrate the TextInput control. -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" viewSourceURL="srcview/index.html">

    <mx:Panel title="Dodawanie dwóch liczb :)" height="279" width="238" 
        paddingTop="10" paddingLeft="10">

        <mx:TextInput id="src"
          restrict="0-9"
                maxChars="20" />
        <mx:TextInput id="dest"
          restrict="0-9"
                maxChars="20"/>

        <mx:Button label="dodaj" click= "dodaj();" id="but"/>
        <mx:Label text="Suma" width="59"/>
        <mx:Label text="0" width="160" id="wynik"/>

    </mx:Panel>
    <mx:Script>
     <![CDATA[
      import mx.formatters.NumberBase;
      public function dodaj():Number
      {
       var liczba:Number = Number(src.text) + Number(dest.text);
       wynik.text = liczba.toString();
       return 0;
      }

     ]]>
    </mx:Script>
</mx:Application>
于 2010-07-04T12:15:17.640 回答
1

查看 mx.validators.NumberValidator: http: //livedocs.adobe.com/flex/3/langref/mx/validators/NumberValidator.html

于 2009-11-18T10:11:24.073 回答
1

我使用类似的东西

<s:TextInput id="textInput"
    restrict="0-9.\\-"
    change="onChangeNumberTextInput(event, 6)"/>

private function onChangeNumberTextInput(event:TextOperationEvent, precision:uint = 2):void
    {
        var strNumber:String = "";
        if (event.currentTarget is mx.controls.TextInput)
            strNumber = (event.currentTarget as mx.controls.TextInput).text;
        else if (event.currentTarget is spark.components.TextInput)
            strNumber = (event.currentTarget as spark.components.TextInput).text;
        else
            return;

        var ind:int = strNumber.indexOf(".");
        if (ind > -1)
        {
            var decimal:String = strNumber.substring(ind + 1);
            if (decimal.indexOf(".") > -1)
                strNumber = strNumber.substring(0, ind + 1 + decimal.indexOf("."));
            if (decimal.length > precision)
                strNumber = strNumber.substring(0, ind + 1 + precision);
        }

        if (event.currentTarget is mx.controls.TextInput)
            (event.currentTarget as mx.controls.TextInput).text = strNumber;
        else if (event.currentTarget is spark.components.TextInput)
            (event.currentTarget as spark.components.TextInput).text = strNumber;
    }

更改侦听器函数会删除除小数点后的精度字符数或任何第二次出现的“.”之外的所有内容:

于 2013-11-06T13:34:21.607 回答
0

我不确定你到底想做什么。如果您只想将这两者相加,请使用以下内容

{parseInt(txt1.text) + parseInt(txt2.text)}

您的示例只是连接这两个字符串。这个示例尝试将文本转换为数字,然后将这两个值相加。

于 2010-04-28T22:09:12.880 回答
0

您需要更改属性,以便应用程序仅向应用程序请求数字键盘。

试试 'SoftKeyboard"number" ; '

于 2013-04-09T03:15:30.930 回答