美文网首页程序员
webview打开h5页面,收回键盘,页面不回弹

webview打开h5页面,收回键盘,页面不回弹

作者: 波波波bo | 来源:发表于2019-03-18 10:36 被阅读0次

IOS微信打开h5页面,点击输入框弹出键盘,收回键盘的时候页面不回弹,会出现留白,需要给input或者select设置失去焦点,让body滚回到头部。

$("input,select").blur(function() {

    setTimeout(function() {

    varscrollHeight=document.documentElement.scrollTop||document.body.scrollTop||0;

    window.scrollTo(0,Math.max(scrollHeight-1,0));

    },100)

});

相关文章

网友评论

    本文标题:webview打开h5页面,收回键盘,页面不回弹

    本文链接:https://www.haomeiwen.com/subject/lvfpsftx.html