onkeyup="value=value.replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')"//金额保留两位小数
oninput="value=value.replace(/^\.+|[^\d\.]/g,'')"//判断正数
<el-input v-model="soft" @input="soft=soft.replace(/^\.+|[^\d\.]/g,'')"></el-input>//判断方式
<!-- @input="soft=soft.replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')" 金额 -->
<!-- @input="soft=soft.replace( /[^\w\.\/]/ig,'')" 数字 和. -->
<!-- @input="soft=soft.replace(/[^\d]/g,'')" 正整数 -->
input的限制输入
最新推荐文章于 2022-01-19 16:29:11 发布