安卓机数字键盘弹出页面被挡问题
Posted Sonya·Lv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓机数字键盘弹出页面被挡问题相关的知识,希望对你有一定的参考价值。
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
以上是关于安卓机数字键盘弹出页面被挡问题的主要内容,如果未能解决你的问题,请参考以下文章