pageshow
イベント期間中のみ可能です。pageshow
ページはその時点でのみ完全に形成されているためです。何がわからない場合は、 jQuery Mobile ページ イベントに関するpageshow
私の記事をご覧ください。また、これはデスクトップ ブラウザーでのみ機能し、モバイル ブラウザーでは機能しません。モバイル ブラウザの場合、入力フィールドはフォーカスされますが、これによってキーボードが表示されることはありません。
$(document).on('pageshow', '#index', function(){
$('#some-input').focus();
});
作業例:
<!DOCTYPE html>
<html>http://jsfiddle.net/Gajotres/PMrDn/#update
<head>
<title>jQM Complex Demo</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<script>
$(document).on('pageshow', '#index', function(){
$('#some-input').focus();
});
</script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="b" data-role="header">
<h1>Index page</h1>
</div>
<div data-role="content">
<input type="text" value="" id="some-input"/>
</div>
</div>
</body>
</html>