我正在尝试在应用程序中使用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]);
};

代码的最后一行不执行任何操作。它没有给出任何错误,但未显示该网页。我正在使用Android 2.3。

最佳答案

您似乎对这个定义有误,我认为它应该像这样:

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

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

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

10-04 10:22