Mobile Safari で、遅延時間を設定した後、テキスト フィールドに集中できません。問題を示すサンプルコードを添付しています。ボタンをクリックして .focus() をトリガーすると、すべてが期待どおりに機能します。setTimeout 関数のように、コールバックにフォーカスを当てると、モバイル サファリでのみ失敗します。他のすべてのブラウザーでは、遅延があり、その後フォーカスが発生します。
紛らわしいことに、モバイルサファリでも「focusin」イベントがトリガーされます。これ (および SO の同様のコメント) は、モバイル サファリのバグだと思います。どんなご案内でも承ります。
エミュレータと 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>
~Similar~ SO の質問: