美文网首页
input 输入框被键盘遮挡

input 输入框被键盘遮挡

作者: 如果你还记得我是小双鱼 | 来源:发表于2018-07-25 17:19 被阅读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://gist.github.com/gebin/9278bd3c56208f3be2d7b5e343e91db9

    相关文章

      网友评论

          本文标题:input 输入框被键盘遮挡

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