安卓机数字键盘弹出页面被挡问题

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);
}
});
}
 
//页面设置overflow:scroll
posted @ 2019-01-17 20:23  Sonya·Lv  阅读(99)  评论(0编辑  收藏  举报