美文网首页
Vue中结合ElementUI实现:限制输入框只能输入正整数

Vue中结合ElementUI实现:限制输入框只能输入正整数

作者: 猪上山 | 来源:发表于2020-11-30 17:24 被阅读0次

    <el-input :ref="'price' + scope.index" v-model.trim="offopFormData.dayPrices[scope.index].price"
    placeholder="本平台房价" size="small" onfocus="this.select()"
    oninput="this.value=this.value.replace(/[^\d.]/g,'');"></el-input>

    相关文章

      网友评论

          本文标题:Vue中结合ElementUI实现:限制输入框只能输入正整数

          本文链接:https://www.haomeiwen.com/subject/vnqdwktx.html