處理安卓和ios當頁面原生鍵盤彈出,輸入框不顯示

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