h5鍵盤彈出收回導致位置錯亂解決方案

漲月薪發表於2019-01-21

step1:input新增失焦事件或提交表單時新增第二步

<input @input="handleInput" @blur="handleBlur" v-model="input"/>
複製程式碼

step2:body的scrollTop重置為0

handleBlur() {
    document.body.scrollTop = 0;
    document.documentElement.scrollTop = 0;
}
複製程式碼

相關文章