home.js
デフォルトのNavigationAppに次のコードがあります。
(function () {
"use strict";
WinJS.UI.Pages.define("/pages/home/home.html", {
// This function is called whenever a user navigates to this page. It
// populates the page elements with the app's data.
ready: function (element, options) {
var submit = document.getElementById("submitBtn");
submit.addEventListener("click", myFunc());
}
});
function myFunc() {
// Do some stuff here
}
})();
myFunc()
私が抱えている問題は、アプリが起動するとすぐに関数が実行され、期待どおりに送信ボタンを押したときに実行されないことです。どうしてこれなの?