私が書いたときにbook.main.method();
エラーが発生しました:Uncaught TypeError: Object function () {
window.book = window.book|| {};
book.control = function() {
var check_is_ready = 'check_is_ready';
if(check_is_ready == 'check_is_ready') {
this.startbook = function() {
var bookMain = new book.main();
bookMain.method();
return;
};
};
};
$(function() {
var control = new book.control();
control.startbook();
});
(function () {
book.main = function() {
var index =0;
this.method = function() {
index++;
if (index <= 500){
book.main.method();// <-- this wrong
// the error which I get :Uncaught TypeError: Object function () {
alert (index);
}
};
};
})();
book.main.method();
エラーなしで呼び出すには、代わりに何を書く必要がありますか?
どうもありがとう