1. 程式人生 > >處理安卓手機輸入法遮擋輸入框問題

處理安卓手機輸入法遮擋輸入框問題

 // 處理安卓手機輸入法遮擋輸入框問題
    if ((/Android/gi).test(navigator.userAgent)) {
        window.addEventListener('resize', function () {
            if (document.activeElement.tagName == 'INPUT' || 
                document.activeElement.tagName == 'TEXTAREA') {
                window.setTimeout(function () {
                    document.activeElement.scrollIntoViewIfNeeded();
                }, 0);
            }
        });
    }