摘要: 实现自动唤起键盘 方式一(推荐) this.$nextTick(() => { this.$refs.input.focus() }) 方式二 setTimeOut(()=>{ this.$refs.input.focus() }, 500) 键盘唤起 延时时间不能过短,因为有页面重新渲染效果,延时 阅读全文
posted @ 2021-09-27 17:14 JackieDYH 阅读(94) 评论(0) 推荐(0) 编辑