ios上使用input框调起系统键盘后 页面会因键盘挤压而上滑,
键盘收起后,页面实际上未回弹的问题…
解决:在input失焦时,强制回弹。
setTimeout(() => {
let scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0
window.scrollTo(0, Math.max(scrollHeight - 1, 0))
}, 100)
关于input框的一些问题:https://www.cnblogs.com/weblxlx/p/10760392.html