在input输入框输入内容之后,点击完成,键盘下去了,可是页面没有回退回去,也就是页面会空出浏览器高度那一块,这个问题发现于ios手机中的qq浏览器。解决方案如下
<input type="text" @blur="scrollReset()"> scrollReset(){ window.scroll(0,0); //让页面归位 }
上面我是用vue写的,没有用vue的话其实也是一样的
$(‘input,textarea‘).on(‘blur‘,function(){ window.scroll(0,0); });