這裏是我的html代碼:Xcode,phoneGap中不包含CSS文件。但是,他們在瀏覽器中運行
<!DOCTYPE html>
<!--
test app
-->
<html>
<head>
<title>jQuery Mobile page</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" charset="utf-8" href="http://darrenvenn.com/greenie.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<title>test app</title>
</head>
<body>
<div data-role="page" data-theme="a">
<div data-role="header" data-position="inline">
<h1>Sample Header</h1>
</div>
<div data-role="content" data-theme="a">
<input type="button" value="selection 1" onclick=""/>
<p>
<input type="button" value="selection 2" onclick="" />
</p><p>
<input type="button" value="selection 3" onclick="" />
</p><p>
<input type="button" value="selection 4" onclick="" />
</p>
</div>
<script type="text/javascript" src="cordova-2.2.0.js"></script>
</div>
</body>
</html>
當我運行這個從瀏覽器中找到的greenie.min.css文件就好了。當我在PhoneGap/Xcode中運行它時,它不會加載css。想知道爲什麼我的css在瀏覽器中加載正常時不會加載PhoneGap。我嘗試了許多不同的方式,使用plain和min版本,本地加載和從url加載,沒有任何作品,什麼都沒有。
這應該是如此簡單!...
是的,它已連接。 – Darren