0

我有一个基于 PhoneGap 的应用程序。该应用程序仅包含一个 index.html 文件,其中包含依赖 PhoneGap 的 js 和插件文件文件,并且工作正常。在 index.html 文件中,我使用 window.location 从服务器加载 url。我想使用 window.location 从应用程序中包含的服务器 html 文件中调用 childbrowser 插件。这意味着从服务器加载的 html 文件具有将在子浏览器中加载的锚链接。我尝试将 childbrowser 插件包含到应用程序中并从服务器 js 调用事件,但它不起作用。任何想法。请帮忙

4

1 回答 1

0

一旦您window.location在服务器上设置 URL 并离开index.html,PhoneGap 将不再加载,因此您无法使用 ChildBrowser。

window.location您需要使用childBrowser.showWebPage()in而不是设置index.html

window.plugins.childBrowser.showWebPage( 'example.com/your-page-on-server' );
于 2012-07-15T04:02:00.847 回答