これは、新しいphonegapプロジェクトでデフォルトで作成されるindex.jsファイルのコードスナップです。 11行目でJavaScript関数で呼び出しが行われない理由
var app = {
// Application Constructor
initialize: function() {
this.bindEvents();
},
// 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);
},
// deviceready Event Handler
//
// The scope of 'this' is the event. In order to call the 'receivedEvent'
// function, we must explicitly call 'app.receivedEvent(...);'
onDeviceReady: function() {
app.receivedEvent('deviceready');
},
// Update DOM on a Received Event
receivedEvent: function(id) {
var parentElement = document.getElementById(id);
var listeningElement = parentElement.querySelector('.listening');
var receivedElement = parentElement.querySelector('.received');
listeningElement.setAttribute('style', 'display:none;');
receivedElement.setAttribute('style', 'display:block;');
console.log('Received Event: ' + id);
}
};
、
document.addEventListener('deviceready', this.onDeviceReady, false);
私はここthis.onDeviceReady()
ようには()
がない理由this.onDeviceReady
はそう関数呼び出しであると仮定?
これは関数呼び出しではなく、関数です。 –