美文网首页
html 键盘遮挡问题

html 键盘遮挡问题

作者: 木利 | 来源:发表于2018-08-02 18:06 被阅读0次
window.onresize = function () {
 var ua = navigator.userAgent;
 var isAndroid = /android/i.test(ua); //android终端
 if(isAndroid) {
   if (document.activeElement.tagName == "INPUT" || document.activeElement.tagName == "TEXTAREA") {
       window.setTimeout(function() {
           document.activeElement.scrollIntoViewIfNeeded();
       },0);
   }
 }   
}

相关文章

网友评论

      本文标题:html 键盘遮挡问题

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