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

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页面,收回键盘,页面不回弹)