<input type="number" @input="phone" maxlength="11" placeholder="输入手机号" placeholder-style="color:#BBBBBB" v-model="repData.phone" />
input输入框 number类型,在监听phone中:
methods: {
phone(e){
console.log("phone ",e)
setTimeout(()=>{
this.repData.phone = '';
console.log("update phone ",this.repData.phone)
},0)
},
}
- 发布:2021-01-29 10:54
- 更新:2021-03-10 10:25
- 阅读:2390
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 3.0.4
手机系统: Android
手机系统版本号: Android 9.0
手机厂商: 华为
手机机型: P30
页面类型: vue
打包方式: 离线
项目创建方式: HBuilderX
操作步骤:
预期结果:
input 中显示的内容为空,存储的数据内容已经没有数据了
input 中显示的内容为空,存储的数据内容已经没有数据了
实际结果:
input 中显示的内容还是 +-. ,存储的数据内容已经没有数据了
input 中显示的内容还是 +-. ,存储的数据内容已经没有数据了
bug描述:
<input type="number" @input="phone" maxlength="11" placeholder="输入手机号" placeholder-style="color:#BBBBBB" v-model="repData.phone" />
input输入框 number类型,在监听phone中:
methods: {
phone(e){
console.log("phone ",e)
setTimeout(()=>{
this.repData.phone = '';
console.log("update phone ",this.repData.phone)
},0)
},
}
无法清除 +-. 这些符号