安卓手机输入框被软键盘遮住的问题,如何在点击输入框的时候类似与IOS那种,输入框直接在软件盘的上面,而不会被遮住,js或者css有什么实现的方式
1 回答
ibeautiful
TA贡献1993条经验 获得超5个赞
在代码中加入如下代码:
if(/Android [4-6]/.test(navigator.appVersion)) {
window.addEventListener("resize", function() {
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
},0);
}
})
}
代码参考来源:stackoverflow-Android does not correctly scroll on input focus if not body element
添加回答
举报
0/150
提交
取消