美文网首页
安卓软键盘挡住输入框问题

安卓软键盘挡住输入框问题

作者: iaiayao | 来源:发表于2020-03-04 18:56 被阅读0次
    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);
                }
            });
        }
    

    相关文章

      网友评论

          本文标题:安卓软键盘挡住输入框问题

          本文链接:https://www.haomeiwen.com/subject/enzblhtx.html