jQTouch Phonegap 问题

发布于 2025-01-04 16:38:34 字数 786 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愿与i 2025-01-11 16:38:34

您需要将 加载到要显示外部页面内容的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文