在 Mobile Safari 中,我在设置延迟时间后无法专注于文本字段。我附上了一些展示该问题的示例代码。如果在单击按钮时触发 .focus(),一切都会按预期工作。如果您将焦点挂在回调上,例如 setTimeout 函数,则它仅在移动 Safari 中失败。在所有其他浏览器中,都会有延迟,然后才会出现焦点。
令人困惑的是,即使在移动 Safari 中,也会触发“focusin”事件。这(以及 SO 中的 ~similar~ 评论)让我认为这是一个移动 safari 错误。任何指导都将被接受。
我已经在模拟器和 iPhone 3GS/4 iOS4 上进行了测试。
示例 HTML:
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Autofocus tests</title>
<meta content='width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0' name='viewport'>
<meta content='yes' name='apple-mobile-web-app-capable'>
</head>
<body>
<h1>
Show keyboard without user focus and select text:
</h1>
<p>
<button id='focus-test-button'>
Should focus on input when you click me after .5 second
</button>
<input id='focus-test-input' type='number' value='20'>
</p>
<script type="text/javascript">
//<![CDATA[
var button = document.getElementById('focus-test-button');
var input = document.getElementById('focus-test-input');
input.addEventListener('focusin', function(event) {
console.log('focus');
console.log(event);
});
button.addEventListener('click', function() {
// *** If triggered immediately - functionality occurs as expected
// input.focus();
// *** If called by callback - triggers the focusin event, but does not bring up keyboard or cursor
var t = setTimeout("input.focus();",500);
});
//]]>
</script>
</body>
</html>
〜类似〜所以问题: