移动端键盘遮挡

前提:使用ionichtml

1.html模板中设置属性:data-prevent-inoic1-focus为true,data-tap-disabled为trueios

 

2.绑定focus事件,事件中处理将当前操做元素滚动到视图内ionic

 

3.定时间隔视状况而定,目前200ms便可this

 

4.ios可能会出现焦点乱跑的状况,能够尝试如下兼容的方式spa

 

 1 // 将元素滚动到视图中,解决键盘遮挡
 2   scrollToView(child) {
 3     if (this.commonData.platform.toLowerCase() === 'ios') {
 4       child.scrollIntoView();
 5     } else {
 6       setTimeout(() => {
 7         child.scrollIntoView(true);
 8       }, 200);
 9     }
10   }
相关文章
相关标签/搜索