我在 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() 时,该站点正在加载应用程序,但不在应用程序浏览器中。我的代码有什么问题