1

使用以下代码,我可以在桌面浏览器上打开一个新窗口:

            var thisWin = window;
            var oauthWin = thisWin.open(data, 'twitter-oauth-window', 'location=0,status=0,width=800,height=400');
            var lastUrl = oauthWin.location.href;
            var meh = true;
            var oauthInt = thisWin.setInterval(
              function()
              {
                if (meh)
                {
                  alert(
                    '\noauthWin.closed: ' + oauthWin.closed +
                    '\noauthWin.location: ' + oauthWin.location +
                    '\nthisWin.closed: ' + thisWin.closed +
                    '\nthisWin.location: ' + thisWin.location +
                    '\noauthWin===thisWin: ' + (oauthWin === thisWin));
                  meh = false;
                }
                // do more stuff here
              }
            );

在警报内的调试输出中:

 oauthWin===thisWin: false

这应该是什么。但是,当在 PhoneGap 中运行相同的代码时,我得到以下信息:

 oauthWin===thisWin: true

这表明PhoneGap 已经在同一个窗口中打开了新的URL,替换了当前的HTML 文档。

我希望单独打开新的 URL,并且能够在满足特定条件时将其关闭,并恢复到旧 URL。

这可以在PhoneGap中实现吗?如何实现?

谢谢!

4

1 回答 1

0

现在使用 PhoneGap 2.3+,我无法以任何方式在 Mobile Safari 中打开 URL。使用 _blank 不起作用,我尝试了 window.open(url, '_blank'),但这现在使用 InAppBrowser 插件打开了 URL(这非常糟糕)。我觉得那个使用插件很有趣,所以我决定编写一个插件来使用在 iOS 应用程序中打开 URL 的标准方法来打开 URL。您可以在此处查看/获取有关此要点的代码:https://gist.github.com/typeoneerror/5097118

这很简单。在我的示例中,我使用 jQuery 连接了具有名为“_blank”的类的链接,并使用插件调用打开了这些 URL:

// execute the plugin called OpenUrl, signature:
// exec(successCallback, errorCallback, pluginName, pluginMethod, params)
cordova.exec(success, error, "OpenUrl", "openUrl", [url]);

我相信你可以为你需要的每个平台轻松地重写插件。这是 iOS 特定的。

于 2013-03-06T06:26:37.163 回答