移动端input下 fixed 布局问题


当底部是fixed布局固定时,手机虚拟键盘会导致布局混乱!,这时候只要判断body初始高度变小,就把body的初始高度赋值给现在,可以解决问题!

if(document.body.scrollHeight < this.height1) {
                    document.body.scrollHeight = this.height1;
                }

你可能感兴趣的:(移动端input下 fixed 布局问题)