关于ios键盘弹起 body的高度拉长,页面底部空白问题

2019-01-25  本文已影响0人  mindy1031
0.jpg

当输入框失去焦点时,ios手机键盘收起,将滚动条改为0
解决方案

$("#phone").on("focusout",function(){
    var ua = window.navigator.userAgent;
    if (ua.indexOf('iPhone') > 0 || ua.indexOf('iPad') > 0) { //键盘收起页面空白问题
         document.body.scrollTop = 0;
          document.documentElement.scrollTop=0;
    }
})
$("#code").on("focusout",function(){
    var ua = window.navigator.userAgent;
    if (ua.indexOf('iPhone') > 0 || ua.indexOf('iPad') > 0) { //键盘收起页面空白问题
        document.body.scrollTop = 0;
        document.documentElement.scrollTop=0;
     }
})
上一篇 下一篇

猜你喜欢

热点阅读