$('input').on('click', function () { var target = this; // 使用定時器是爲了讓輸入框上滑時更加天然 setTimeout(function(){ target.scrollIntoView(true); },100); $('body,html').height(document.documentElement.clientHeight) });