码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2019-01-17 21:15:34      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:function   navig   input   event   useragent   needed   window   lint   gen   

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

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

标签:function   navig   input   event   useragent   needed   window   lint   gen   

原文地址:https://www.cnblogs.com/lvshuya/p/10284370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!