H5 输入框或者文本域虚拟键盘弹起时 自动弹起

H5 输入框或者文本域虚拟键盘弹起时 自动弹起

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);
            }
        })
    }