美文网首页
解决安卓手机软键盘挡住input输入框

解决安卓手机软键盘挡住input输入框

作者: demo11 | 来源:发表于2017-06-30 10:34 被阅读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);
            }
        })
    }
    

    监听窗口变化的时候,判断当前激活的元素是input或是textarea就让元素滚动到视图可见区域。

    相关文章

      网友评论

          本文标题:解决安卓手机软键盘挡住input输入框

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