Vue 引入fastclick后IOS的input聚焦延迟解决方案
Closed this issue · 8 comments
liyaocool commented
//main.js 引入
import FastClick from 'fastclick';
FastClick.attach(document.body);
FastClick.prototype.focus = (ele) => { 'use strict'; ele.focus(); }; //修改focus()方法
RoseEnd commented
老哥你这样能解决ios input聚焦问题不
liyaocool commented
老哥你这样能解决ios input聚焦问题不
可以,就用这3行代码,不用其他
RoseEnd commented
嗯,在之前的issue里也找到了相似的解决方案
GiteeTimo commented
同延迟
owen800q commented
同延迟
解决了吗,我折腾了几天还没搞定。。。
javanoclaw commented
改源码 增加 ele.focus();,
javanoclaw commented
改源码 增加 ele.focus();,
javanoclaw commented
改源码 增加 ele.focus();,