解决H5安卓机软键盘弹起遮挡input输入框的问题。
window.addEventListener('resize',function(){if(document.activeElement.tagName==='INPUT'||document.activeElement.tagName==='TEXTAREA'){window.setTimeout(function(){if('scrollIntoView'indocument.activeE
·
window.addEventListener('resize', function() {
if( document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA') {
window.setTimeout(function() {
if('scrollIntoView' in document.activeElement) {
document.activeElement.scrollIntoView();
} else {
document.activeElement.scrollIntoViewIfNeeded();
}
}, 0);
}
});
更多推荐
已为社区贡献1条内容
所有评论(0)