3

我正在尝试在我的应用程序中使用 Childbrowser 插件。我的代码如下:

ChildBrowser.prototype.showWebPage = function(url, options) {
    options = options || {
        showLocationBar: true,
        locationBarAlign: "top"
    };
    //Code Runs up to this point
    cordova.exec(this._onEvent, this._onError, "ChildBrowser", "showWebPage", [url, options]);
};

代码的最后一行什么都不做。它没有给出任何错误,但没有显示网页。我使用的是安卓 2.3。

4

1 回答 1

2

您似乎错误地定义了这一点,我认为它应该如下所示:

var url = "http://www.google.com";

window.plugins.childBrowser.showWebPage( url, {showLocationBar: true});// This opens the webpage.

我不太明白你为什么使用ChildBrowser.prototype.showWebPage

于 2012-12-18T12:40:33.210 回答