龙空技术网

[绍棠] ant-design-vue a-input只能输入正整数的方法

happy绍棠 80

前言:

目前看官们对“input框只能输入正整数”可能比较关切,姐妹们都需要分析一些“input框只能输入正整数”的相关内容。那么小编同时在网络上网罗了一些有关“input框只能输入正整数””的相关内容,希望同学们能喜欢,咱们一起来了解一下吧!

 <a-input        v-model="model.num"        type="number"        oninput="value=value.replace('.', '',).replace('-', '',)"        style="width: 220px"      ></a-input>

同理

<a-input-group compact>                <a-input type="number" oninput="value=value.replace('.', '',).replace('-', '',)" style="width: 180px; text-align: center" v-decorator="['startScore']" placeholder="Minimum" />                <a-input style="width: 40px; border-left: 0; pointer-events: none; backgroundColor: #fff"                  placeholder="~"                  disabled />                <a-input type="number" oninput="value=value.replace('.', '',).replace('-', '',)" style="width: 180px; text-align: center; border-left: 0" placeholder="Maximum" v-decorator="['endtScore']" />              </a-input-group>

标签: #input框只能输入正整数