Iscroll使用导致键盘不弹出

Iscroll使用禁用了浏览器默认事件,导致键盘不弹出也不能手动上划出来

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
this.timerId = null;
let cnt = 0;
setInterval( () => {
if (cnt < 4) {
cnt++;
} else {
clearInterval(this.timerId);
this.timerId = null;
return;
}
if(this.state.OS < 11){
this.refs.ipt.scrollIntoView(true)
this.refs.ipt.scrollIntoViewIfNeeded();
document.body.scrollTop=document.body.scrollHeight;
}
}, 300);