html 键盘遮挡问题

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 键盘遮挡问题)