IOS12微信6.7.4输入框失去焦点,软键盘关闭后,被撑起的页
2019-02-20 本文已影响0人
BluesCurry
不多说,直接上解决方法
$("input,select").blur(function(){
setTimeout(() => {
const scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
window.scrollTo(0, Math.max(scrollHeight - 1, 0));
}, 100);
})