美文网首页
解决安卓手机键盘遮挡输入框问题

解决安卓手机键盘遮挡输入框问题

作者: 勤的空间 | 来源:发表于2020-07-23 16:00 被阅读0次
    //处理键盘遮挡问题
          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/bpshlktx.html