我在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>
当我使用上述方法调用时,没有任何反应。当我调用on onDeviceReady()时,该站点正在应用程序中加载它而不是在inapp浏览器中。我的代码出错了
答案 0 :(得分:0)
Dunno,但你检查过你有
<script src="phonegap.js"></script>
在中的脚本中
https://build.phonegap.com/docs/plugins-using
将其遗漏可能会产生这些错误