我在ASP.net上写了一个网页登录表单。
使用Nexus 4,安装Android 4.2.1,原生Chrome浏览器 - 当我点击<input>
字段时,会出现软键盘,然后该字段会立即失去焦点。我必须在键盘已经打开的情况下再次单击<input>
字段才能实际输入文本。
桌面版Chrome中不会发生这种情况。
我在ASP用户控件中有以下登录表单:
<asp:Login ID="login_form" runat="server" OnLoginError="OnFail" OnLoggedIn="OnLoggedIn" RenderOuterTable="false" RememberMeSet="True">
<LayoutTemplate>
<asp:Panel runat="server" DefaultButton="LoginButton" CssClass="members-login">
<fieldset>
<label for="UserName">Username</label>
<asp:TextBox ID="username" placeholder="e.g. joebloggs12" runat="server"></asp:TextBox>
<label for="Password">Password</label>
<asp:TextBox ID="password" runat="server" placeholder="e.g. 1234" TextMode="Password"></asp:TextBox>
<label id="RememberMe">Remember me</label>
<asp:CheckBox ID="RememberMe" runat="server" />
<asp:Button CssClass="button" ID="LoginButton" runat="server" CommandName="Login" Text="SUBMIT" />
</fieldset>
</asp:Panel>
</LayoutTemplate>
</asp:Login>
在浏览器中显示如下:
<div class="members-login" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ContentPlaceHolderDefault_contentBody_masterContent_login_form_LoginButton')">
<fieldset>
<label for="UserName">Username</label>
<input name="ctl00$ctl00$ctl00$ContentPlaceHolderDefault$contentBody$masterContent$login_form$username" type="text" id="ContentPlaceHolderDefault_contentBody_masterContent_login_form_username" placeholder="e.g. joebloggs12" />
<label for="Password">Password</label>
<input name="ctl00$ctl00$ctl00$ContentPlaceHolderDefault$contentBody$masterContent$login_form$password" type="password" id="ContentPlaceHolderDefault_contentBody_masterContent_login_form_password" placeholder="e.g. 1234" />
<label id="RememberMe">Remember me</label>
<input id="ContentPlaceHolderDefault_contentBody_masterContent_login_form_RememberMe" type="checkbox" name="ctl00$ctl00$ctl00$ContentPlaceHolderDefault$contentBody$masterContent$login_form$RememberMe" checked="checked" />
<input type="submit" name="ctl00$ctl00$ctl00$ContentPlaceHolderDefault$contentBody$masterContent$login_form$LoginButton" value="SUBMIT" id="ContentPlaceHolderDefault_contentBody_masterContent_login_form_LoginButton" class="button" />
</fieldset>
</div>
我怀疑ViewState是以某种方式窃取焦点。但我尝试了event.stopPropogation()
没有帮助。
临时修复
现在我已经解决了一个hacky修复,在点击后700毫秒迫使焦点重新回到<input>
元素:
jQuery('input').bind('click',function(evt) {
var focusClosure = (function(inputElem) {return function() {console.log(inputElem.focus());}}($(evt.target)));
window.setTimeout(focusClosure, 700);
});
答案 0 :(得分:35)
我发现这与ASP.net或ViewState无关。
当Android键盘出现时,浏览器窗口会调整大小 - 触发调整大小事件。
我正在运行类似以下的内容:
// Move the navigation on resize
$(window).bind('resize', function() {
if(maxWidth <= 710px) {
$('.nav').after($('.main-content'));
}
});
这改变了DOM中的导航。我想这会重绘DOM,因此导致DOM中的任何内容失去焦点。我在调整大小时停止了这种情况 - 使其仅在初始页面加载时发生。
答案 1 :(得分:9)
我遇到了类似的问题,如果输入处于焦点,我的方法是阻止调整大小来解决问题:
$(window).bind('resize', function() {
if ($("input").is(":focus")) {
// input is in focus, don't do nothing or input loses focus and keyboard dissapears
} else {
// do whatever you should do if resize happens
}
});
答案 2 :(得分:3)
我找到了其他解决方案
首先你必须创建一个函数
function getFocus(campo){
$(window).bind('resize', function() {
if(windowWidth <= 1025) {
$(campo).focus();
}
});
}
当您点击输入时,您可以调用该功能
$('input').click(function(){
getFocus(this);
});
这对我有用
答案 3 :(得分:0)
需要jQuery
我自己一直遇到这个问题,最后使用这个解决方案。它可能对其他人有用。在我的情况下,调整大小使得搜索栏失去了焦点。
// Makes it so that click events are fired on a mobile device.
$('#searchbar').each(function(){
this.onclick = function() {}
});
// Runs an interval 10 times with a 50ms delay. Forces focus.
$("#searchbar").click(function() {
var i = 0;
var interval = window.setInterval(function(){
if(i > 10) {
clearInterval(interval);
}
$("#searchbar").focus();
i++;
}, 50);
});
答案 4 :(得分:0)
对于在WordPress中遇到此问题的人,请在标题中插入以下代码。
<script type="text/javascript">
jQuery(function($) {
$(window).bind('resize', function() {
if ($("input").is(":focus")) {
var focusClosure = (function(inputElem) {return function()
{console.log(inputElem.focus());}}($(evt.target)));
window.setTimeout(focusClosure, 700);
} else {
// Other resize functions
}
});
});
</script>
答案 5 :(得分:0)
我在我的$(window).resize(..)
中有自定义代码,我希望将此解决方法仅限于受影响的特定用例(仅限Android移动设备,文本输入或TextArea焦点),所以我来了这个:
function isAndroidTextInputFocus() {
var userAgent = navigator.userAgent.toLowerCase();
var isAndroid = userAgent.indexOf("android") != -1;
var result = (isAndroid &&
($("input[type=text]").is(":focus") || $("textarea").is(":focus"))
);
return result;
}
然后我调整了我的$(窗口).resize(..),就像这样:
$(window).resize(function(e) {
if (!isAndroidTextInputFocus()) {
// ... Proceed with my custom Window Resize logic
}
});