ios端:input失去焦点时,页面因为键盘被顶起后没有还原(此时键盘已经没有了),解决办法:
$("input").blur(function(){
setTimeout(() => {
var scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
window.scrollTo(0, Math.max(scrollHeight - 1, 0));
}, 100);
})