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