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

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

猜你喜欢

转载自www.cnblogs.com/lvshuya/p/10284370.html