h5键盘弹出收回导致位置错乱解决方案

726 阅读1分钟

step1:input添加失焦事件或提交表单时添加第二步

<input @input="handleInput" @blur="handleBlur" v-model="input"/>

step2:body的scrollTop重置为0

handleBlur() {
    document.body.scrollTop = 0;
    document.documentElement.scrollTop = 0;
}