jQTouch Phonegap 问题
我正在使用 jQTouch 和 Phonegap,它在我的 Xcode 和 iPhone 模拟器中完美运行。我正在尝试开发的是在我的应用程序中动态显示外部网页。 例如,当您第一次运行应用程序时,它会显示包含数据“用户界面”、“动画”...等的表格。我想要做的是,当用户点击“用户界面”时,它应该显示一些外部网页(让比如说谷歌的主页)。
我写了下面的代码,这是在用户界面->边缘到边缘->(这里我想显示谷歌的主页)。宽度:340和高度:420将是google主页的显示区域。请帮我做一下。
<div id="edge">
<div class="toolbar">
<h1>Edge to Edge</h1>
<a href="#" class="back">back</a>
</div>
<div style="width:340px; height:420px; background:red;">
<ul class="edgetoedge scroll">
<li class="sep">under construction...</li>
</ul>
</div>
</div>
谢谢
I am using jQTouch and Phonegap and it perfectly runs in my Xcode and iPhone simulator. What I am trying to develop is to dynamically display external webpages within my application.
For example, when you first run the application it shows table with data "User Interface", "Animations" ... etc. What I want to make is when user taps on "User Interface" it should display some external web pages ( lets say google's home page).
I wrote the following code and this is inside User Interface->Edge to Edge->(here I want to dispaly the home page of google). The width:340 and height:420 will be the display area of google's home page. Please help me to make it.
<div id="edge">
<div class="toolbar">
<h1>Edge to Edge</h1>
<a href="#" class="back">back</a>
</div>
<div style="width:340px; height:420px; background:red;">
<ul class="edgetoedge scroll">
<li class="sep">under construction...</li>
</ul>
</div>
</div>
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将
加载到要显示外部页面内容的 div 中。
http://www.w3schools.com/tags/tag_iframe.asp
确保添加白名单的外部 URL(PhoneGap.plist 中的ExternalHosts 条目,根据 PhoneGap for iOS 常见问题解答:http://wiki.phonegap.com/w/page/41631150/PhoneGap %20for%20iOS%20FAQ)并将 OpenAllWhitelistURLsInWebView 的布尔值设置为 YES。
You will need to load an
<iframe>
into the div you want to display the content of the external page.http://www.w3schools.com/tags/tag_iframe.asp
Make sure to add the external URL to the whitelist (ExternalHosts entry in PhoneGap.plist as per the PhoneGap for iOS FAQ: http://wiki.phonegap.com/w/page/41631150/PhoneGap%20for%20iOS%20FAQ) and set the Boolean for OpenAllWhitelistURLsInWebView to YES.