在移動端的文本框中輸入內容,收起鍵盤后會出現頁面布局不下滑的問題(目前只在 IOS 下進行了測試):
輸入內容.png
收起鍵盤.png
解決方案是,當文本框失去焦點后讓
window
重新滾動到(0,0)
到位置:
const inputItems = document.querySelectorAll("input");
inputItems.forEach(function(ele){
ele.addEventListener("blur",function(){
window.scrollTo(0,0)
})
})
完。