PhonegapとjQuerymobileを使用してアプリを構築しています...
私のindex.html
ページには、anchor
別のページを開くタグがあります。dialog
<a href="passcode.html" data-rel="dialog" data-transition="pop">
私のpasscode.html
ファイルはこんな感じです
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/jquery.mobile-1.1.1.min.css" />
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div idata-role="dialog">
<div data-role="header" data-theme="d">
<h1>Enter Passcode</h1>
</div>
<div data-role="content" data-theme="c">
<input type="password"/>
<br/>
<input type="button" value ="Access Cards"/>
</div>
</div>
</body>
</html>
最初をクリックすると、anchor
このダイアログがポップアップします。問題は、すべてが正常に機能することです。iPhone
iPad
Android Simulator
しかし、キーボード入力のテキストをタップするとNexus S
、キーボードがポップアップしますが、入力しようとすると、inoutフィールドに何も表示されません。
カーソルが表示されます。これは、フォーカスされていることを意味します。キーボードも表示されます。ただし、入力フィールドは入力されません。
これがスクリーンショットです...誰かが同様の問題を抱えていましたか?