移动端H5,各种兼容问题集合

1.移动端页面收起键盘时,底部有空白:失去焦点时,滚动到顶部(IOS)

<input type="text" οnblur="window.scrollTo(0, 0);">

2.Element.scrollIntoView() 方法让当前的元素滚动到浏览器窗口的可视区域内(必须是可滚动页面,才能实现)

var element = document.getElementById("box");

element.scrollIntoView();
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({block: "end", behavior: "smooth"});

3.h5键盘挡住输入框,input 使用 click 事件,以及setTimeout事件

https://blog.csdn.net/changerzhuo_319/article/details/70876449

posted @ 2020-07-02 14:27  董七  阅读(714)  评论(0编辑  收藏  举报