JQuery mobile(1.2.0)をPhonegap(2.2.0)でXcodeと連携させることを初めて試みています。Xcode/Phonegapのインストールは機能します-それはに従ってセットアップされています
次に、このプロジェクトのwww / js ad www/cssにjquerymobilecssとjsを追加し、単純なindex.htmlを取得しました。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/jquery.mobile-1.2.0.css"/>
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.structure-1.2.0.css"/>
<title>Test of jquery mobile</title>
</head>
<script type="text/javascript" src="cordova-2.2.0.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.2.0.js"></script>
<script type="text/javascript" src="js/jquery-1.8.2.js"></script>
<body>
<div data-role="page" id="liveListPage">
<div data-role="header" data-position="fixed" data-theme="a" >
<h1>Header</h1>
</div>
<div data-role="footer" data-position="fixed" data-theme="a" >
<h1>Footer</h1>
</div>
</div>
</body>
</html>
しかし、Runを押すと(正常にビルドされますが、jquery mobileはまったく動作していないようです)、位置とテーマが固定されていないh1「Header」と「Footer」が表示されます。私のスキームは<MyApp>/ iPhone6.0Simulatorです。
私は何が間違っているのですか?ログウィンドウにエラーはありません。