当移动浏览器调出键盘时,它会尝试移动滚动条,以便仍然可以查看输入。
在iOS Safari上,它似乎通过找到最近的滚动父级来正确执行此操作。
在Android原生或Chrome移动浏览器上,它似乎只是尝试使用body元素然后放弃,因此焦点输入隐藏在键盘下方。
在body元素上设置overflow-y: hidden
。创建一个可滚动的容器并在其中放置一个表单。
当您选择靠近屏幕底部的元素时,它会被键盘遮挡。
http://dominictobias.com/android-scroll-bug/
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"/>
<title>Android scroll/focus bug</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
.scroll {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-y: scroll;
}
input {
margin-bottom: 20px;
width: 100%;
}
</style>
</head>
<body>
<div class="scroll">
<input type="text" value="Input 1">
<input type="text" value="Input 2">
<input type="text" value="Input 3">
<input type="text" value="Input 4">
<input type="text" value="Input 5">
<input type="text" value="Input 6">
<input type="text" value="Input 7">
<input type="text" value="Input 8">
<input type="text" value="Input 9">
<input type="text" value="Input 10">
<input type="text" value="Input 11">
<input type="text" value="Input 12">
<input type="text" value="Input 13">
<input type="text" value="Input 14">
<input type="text" value="Input 15">
<input type="text" value="Input 16">
<input type="text" value="Input 17">
<input type="text" value="Input 18">
<input type="text" value="Input 19">
<input type="text" value="Input 20">
</div>
</body>
</html>
任何想法如何解决这个问题?它需要一些浏览器检测和乱七八糟的黑客吗?
答案 0 :(得分:46)
这是Android原生浏览器中的一个错误。顺便说一句,输入在软键盘上输入字符后滚动到视图中。
以下代码段放在页面的某处应该有帮助:
if(/Android 4\.[0-3]/.test(navigator.appVersion)){
window.addEventListener("resize", function(){
if(document.activeElement.tagName=="INPUT"){
window.setTimeout(function(){
document.activeElement.scrollIntoViewIfNeeded();
},0);
}
})
}
答案 1 :(得分:9)
Serge的答案很棒,但我做了一些改进,为我改进了它。
问题出现在Android 6上,所以我将它添加到支票中,我需要修复以处理textareas和输入。
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);
}
})
}
如果有人需要Angular 1中的修复,这就是我在那里使用的。
angular.module('<module name>').run(function ($window, $timeout) {
if(/Android [4-6]/.test($window.navigator.appVersion)){
$window.addEventListener("resize", function(){
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA"){
$timeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
});
}
});
}
});
答案 2 :(得分:1)
如果能节省一些时间,则提供轻微修改:
MDN建议不要.scrollIntoViewIfNeeded
bc浏览器不兼容=&gt; .scrollIntoView
是一个可行的替代品,浏览器兼容性稍高一些
if(/Android/.test(navigator.appVersion)) {
window.addEventListener("resize", function() {
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
document.activeElement.scrollIntoView();
}
})
}
答案 3 :(得分:0)
稍微看一下这个错误似乎是由浏览器的“建议”功能引起的。因为我并不是真的想要我曾经使用过的建议:
if(/Android/.test(navigator.appVersion)){
$('input[type="text"]').attr('autocomplete', "off");
}
可以提供更顺畅的体验。