有什么办法可以防止虚拟智能手机键盘隐藏输入?
Is there any way to prevent virtual smartphone keyboard hiding input?
在我的移动网站上(我使用 jQuery 移动)我在页面底部有输入。当我尝试向它输入一些信息时,会出现虚拟键盘(这是必须的)。问题是它隐藏了一半的页面,包括我正在打字的输入,而不是向上滚动的页面。在示例中,输入 4-8 隐藏在键盘下方。
HTML
<input type="text" placeholder="1">
<input type="text" placeholder="2">
<input type="text" placeholder="3">
<input type="text" placeholder="4">
<input type="text" placeholder="5">
<input type="text" placeholder="6">
<input type="text" placeholder="7">
<input type="text" placeholder="8">
CSS
input {
display: block;
width: 100%;
margin-bottom: 10px;
}
为此,我在输入焦点事件上使用了 jQuery.mobile.silentScroll(),然后在模糊时向下滚动。
像这样:
$('#myinput').on('focus',function(){
$.mobile.silentScroll($('#myinput').position().top - 100);
$('#myinput').focus();
});
$('#myinput').on('blur',function(){
$.mobile.silentScroll($('#myform').position().top);
});
在我的移动网站上(我使用 jQuery 移动)我在页面底部有输入。当我尝试向它输入一些信息时,会出现虚拟键盘(这是必须的)。问题是它隐藏了一半的页面,包括我正在打字的输入,而不是向上滚动的页面。在示例中,输入 4-8 隐藏在键盘下方。
HTML
<input type="text" placeholder="1">
<input type="text" placeholder="2">
<input type="text" placeholder="3">
<input type="text" placeholder="4">
<input type="text" placeholder="5">
<input type="text" placeholder="6">
<input type="text" placeholder="7">
<input type="text" placeholder="8">
CSS
input {
display: block;
width: 100%;
margin-bottom: 10px;
}
为此,我在输入焦点事件上使用了 jQuery.mobile.silentScroll(),然后在模糊时向下滚动。
像这样:
$('#myinput').on('focus',function(){
$.mobile.silentScroll($('#myinput').position().top - 100);
$('#myinput').focus();
});
$('#myinput').on('blur',function(){
$.mobile.silentScroll($('#myform').position().top);
});