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

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

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

上一篇:给IConfiguration写一个GetAppSetting扩展方法


下一篇:Flutter - AAPT: error: resource android:attr/dialogCornerRadius not found.