关于苹果手机form输入后页面整体上移

1.不解决上移

只解决错位body标签上加ontouchstart,fixed可以尝试换成absolute

2、js上加

$("input,select").blur(function(){
           setTimeout(function() {
               var scrollHeight = document.documentElement.scrollTop || document.body.scrollTop || 0;
                window.scrollTo(0, Math.max(scrollHeight - 1, 0));
            }, 100);
  })

输入框失去焦点时触发让页面滑动到顶部,

本菜鸟推荐使用二,

小结,overflow-y:auto或scroll;配合-webkit-overflow-scrolling : touch; 在苹果手机上效果更好呦

你可能感兴趣的:(关于苹果手机form输入后页面整体上移)