https://developer.mozilla.org/zh-CN/docs/Web/API/Element/scrollIntoView
移動端input被鍵盤遮擋,事件是跳到可視區域!
document.querySelector('#inputId').scrollIntoView();
//只要在input的點擊事件,或者獲取焦點的事件
還有一個事件是指定在上方或下方
https://developer.mozilla.org/zh-CN/docs/Web/API/Element/scrollIntoViewIfNeeded
