带电话2.0的儿童浏览器

问题描述:

由于phonegap 2 window.plugins不再可用,但childBrowser仍然依赖于此。 如何在phonegap 2项目中调用childBrowser插件?带电话2.0的儿童浏览器

这在1.9工作正常:

cb = window.plugins.childBrowser; 
+0

解决方法?使用jQuery。 – 2012-07-29 21:45:07

首先从这里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");