我使用webview的概念开发了一个phonegap应用程序。然后,我在index.js中定义了一个函数,我希望在通过应用程序打开我的网站后调用它(作为webview)。 当我测试我的应用程序时,它不会调用函数'AppelPG'而我不知道如何在不编写任何本机代码的情况下执行此操作。 如何在我的webview中调用此Javascript函数?
var app = {
// Application Constructor
initialize: function() {
alert("initialisation de l'application!");
// window.location.href = "http://mywebsite.com";
window.open('http://mywebsite.com', '_self ', 'location=yes');
this.bindEvents();
},
AppelPG: function(){
alert("Appel fonction définie dans l'application!");
}
// Bind Event Listeners
//
// Bind any events that are required on startup. Common events are:
// 'load', 'deviceready', 'offline', and 'online'.
bindEvents: function() {
document.addEventListener('deviceready', this.onDeviceReady, false);
},
}