Vue项目中input框focus时不调出键盘,亲测有效
在移动端,实现input框获得焦点的同时不会唤起手机键盘。亲测有效<input type="text" placeholder="收货地址" v-model="address3" @focus.prevent="showcountF" ref="address" />showcountF(){this.showcount=true;this...
·
在移动端,实现input框获得焦点的同时不会唤起手机键盘。亲测有效
<input type="text" placeholder="收货地址" v-model="address3" @focus.prevent="showcountF" ref="address" />
showcountF(){
this.showcount=true;
this.$refs.address.setAttribute('readonly', 'readonly');
},
更多推荐
已为社区贡献7条内容
所有评论(0)