vue中限制input只能输入数字-示例
程序员文章站
2022-06-07 14:04:35
...
方法1
new Vue({
el:'#demo',
data:{
oldNum:0
},
computed:{
inpNum:{
get:function(){
return this.oldNum;
},
set:function(newValue){
this.oldNum=newValue.replace(/[^\d]/g,'');
}
}
}
})
方法二:
<input type='text' @input="handleInput" :value="val"/>
handleInput(e){
this.val=e.target.value.replace(/[^\d]/g,'');
}
下一篇: Mysql基础知识点汇总_MySQL