Jquery mobile 为什么jquery移动风格没有使用phone gap加载到xcode模拟器构建中?

Jquery mobile 为什么jquery移动风格没有使用phone gap加载到xcode模拟器构建中?,jquery-mobile,cordova,xcode3.2,Jquery Mobile,Cordova,Xcode3.2,我已经使用jquerymobile的列表视图实现了一个简单的应用程序,它在iphonesimulator&device上显示为超链接。它在android上运行良好 音差 我的头衔 你好,世界 如果将在线jquery移动文件链接到html文件,您可能需要将code.jquery.com添加到PhoneGap.plist中的ExternalHosts。一些源代码有助于疑难解答,您查看的代码看起来如何?您好,我无法放置html代码。我使用了Hello world输入滑块:PhoneGap我的标题

我已经使用jquerymobile的列表视图实现了一个简单的应用程序,它在iphonesimulator&device上显示为超链接。它在android上运行良好

音差


我的头衔
你好,世界


如果将在线jquery移动文件链接到html文件,您可能需要将
code.jquery.com
添加到
PhoneGap.plist
中的
ExternalHosts

一些源代码有助于疑难解答,您查看的代码看起来如何?您好,我无法放置html代码。我使用了Hello world

输入滑块:PhoneGap我的标题
对不起,我不知道如何在注释中格式化代码。与其将代码作为注释插入,编辑您的问题并在此处插入代码。
     <script type="text/javascript" src="jquery-1.6.4.min.js"></script> 


     <script type="text/javascript" src="jquery.mobile-1.0.min.js"></script> 
</head>
<body>

<div data-role="page">

<div data-role="header">
    <h1>My Title</h1>


</div><!-- /header -->

<div data-role="content">   
    <p>Hello world</p>      
<!-- /content -->
<form>
<a href="#" data-role="button" data-icon="star">Star button</a>
</form</div>
<ul data-role="listview" data-inset="false" data-filter="false">
<li><a href="#">Acura</a></li>
<li><a href="#">Audi</a></li>
<li><a href="#">BMW</a></li>
<li><a href="#">Cadillac</a></li>
<li><a href="#">Ferrari</a></li>
</ul>
</div>