1

我在 ios 中使用 Phonegap 2.9.0,我已经完成了inappbrowser的教程。我在我的应用程序中尝试了以下操作

App.js 调用方法

indexpnl.element.on({
        tap: function (e) {
            var el = Ext.get(e.target);
            var bval = el.getId();
     if (bval == "btnfacebook") {
              //   onDeviceReady()//using this application screen its self loading the site view not in inappbrowser
              document.addEventListener("deviceready",onDeviceReady, false);//here nothing happening
            }
        }
    });

jsfunction.js 方法

function onDeviceReady()
{
    var ref = window.open('http://www.facebook.com', '_blank', 'location=yes');
    ref.addEventListener('loadstart', function() { alert('start: ' + event.url); });
    ref.addEventListener('loadstop', function() { alert('stop: ' + event.url); });
    ref.addEventListener('exit', function() { alert(event.type); });
}

我已经在 config.xml 中包含了插件

<feature name="InAppBrowser">
    <param name="ios-package" value="CDVInAppBrowser" />
</feature>

当我使用上述方法调用时,什么也没有发生。当我调用 OnDeviceReady() 时,该站点正在加载应用程序,但不在应用程序浏览器中。我的代码有什么问题

4

1 回答 1

0

Dunno but have you checked you have a

<script src="phonegap.js"></script> 

in your script as in

https://build.phonegap.com/docs/plugins-using

Leaving it out can produce those kind of errors

于 2013-11-14T00:16:56.183 回答