在苹果手机上点击输入框,输入过后将视图窗口变了,顶部有空白。如下图
从百度上搜方法都是让获取input焦点后在让html,body = 100% ,但是我得没生效,最后我是用强制滚到到底部 scrollIntoView()
methods:{
//获取到input框失去焦点 blur
xxx(){
document.body.scrollIntoView(false)
}
}
methods:{
//获取到input框失去焦点 blur
xxx(){
document.body.scrollIntoView(false)
}
}