微信页面input获取焦点,布局上移,失去焦点布局在ios12-微信6.7.0版本以上不回滚的解决方案:
setTimeout(function(){ let scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0; window.scrollTo(0, Math.max(scrollHeight - 1, 0)); },100)
问题会处在 input textarea select 系统默认弹出的软键盘都会有问题,
input textarea 在blur的时候加,select在change的时候加
原文地址:https://www.cnblogs.com/hjbky/p/10791465.html
时间: 2024-11-05 21:03:27