PhoneGapを使用して、HTML5、CSS、およびjQueryを使用してiPhoneアプリケーションを開発しています。ただし、PhoneGapまたはMWEの理解にはいくつかの問題があるようです。
codeforest.netの次のコードを使用しました。
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Tutorial on Codeforest.net</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
</head>
<body>
<!-- Start of first page -->
<div data-role="page" id="first">
<div data-role="header">
<h1>First</h1>
</div><!-- /header -->
<div data-role="content">
<p>The content</p>
<p>View internal page called <a href="#second">second</a></p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
<!-- Start of second page -->
<div data-role="page" id="second">
<div data-role="header">
<h1>Second</h1>
</div><!-- /header -->
<div data-role="content">
<p>I'm the second content</p>
<p><a href="#first">Back to first</a></p>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>
別のファイルでコードを開始すると、目的の動作が発生します(リンクをクリックすると、2番目のページに戻るボタンが上部に表示されます)div
。id="first"
PhoneGapを使用して、このHTML / CSS/JSの例を動作するiOSアプリケーションに変換できると思いました。
私が最初から抱えていた問題は、.html
相互に参照するいくつかの異なるファイルが必要なことでした。back-button
これは機能しますが、ヘッダーにネイティブが表示されないという問題があります。