带有phonegap 2.0的儿童浏览器

时间:2012-07-29 21:43:22

标签: javascript ios cordova

由于phonegap 2 window.plugins不再可用,但是childBrowser仍然依赖于它。 如何在phonegap 2项目中调用childBrowser插件?

这在1.9中工作正常:

cb = window.plugins.childBrowser;

1 个答案:

答案 0 :(得分:1)

首先从这里下载最新的儿童浏览器https://github.com/phonegap/phonegap-plugins/tree/8848e8dd7f0d93810eec49fb1124f6389c963b68/Android/ChildBrowser

使用 2.0.0 版本

该插件创建对象window.plugins.childBrowser。要使用,请调用以下可用方法之一:

  /**
    * Display a new browser with the specified URL.
    * This method loads up a new web view in a dialog.
    *
    * @param url           The url to load
    * @param options       An object that specifies additional options
    */
  showWebPage(url, [options])
Sample use:

window.plugins.childBrowser.showWebPage("http://www.google.com", { showLocationBar: true });
  /**
    * Close the browser.
    */
  close() {
Sample use:

window.plugins.childBrowser.close();
  /**
    * A user supplied call back which is run when the browser is closed.
    */
  onClose() 
Sample use:

window.plugins.childBrowser.onClose();
  /**
    * A user supplied call back which is run when the browser location changes.
    * The method is called with the new location of the browser.
    */
  onLocationChange(location) 
Sample use:

window.plugins.childBrowser.onLocationChange(location);
  /**
   * Display a new browser with the specified URL.
   * 
   * NOTE: If usePhoneGap is set, only trusted PhoneGap URLs should be loaded,
   *       since any PhoneGap API can be called by the loaded HTML page.
   *
   * @param url           The url to load
   * @param usePhoneGap   Load url in PhoneGap webview [optional] - Default: false
   */

  openExternal(url, [usePhoneGap])
Sample use:

window.plugins.childBrowser.openExternal("http://www.google.com");
相关问题