我第一次尝试让 JQuery mobile (1.2.0) 与 Xcode 和 Phonegap (2.2.0) 一起使用。Xcode/Phonegap 安装工作 - 它已根据
然后,我将 jquery mobile css 和 js 添加到该项目的 www/js ad www/css 中,并得到了一个简单的 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>
但是当推动运行时 - 它构建得很好,但 jquery mobile 似乎根本没有采取行动 - 我只是得到没有固定位置和主题的 h1 'Header' 和 'Footer' 。我的方案是 <我的应用程序>/iPhone 6.0 模拟器。
我究竟做错了什么?日志窗口中没有错误。