當我寫book.main.method();
我有錯誤:遺漏的類型錯誤:目標函數(){錯誤:遺漏的類型錯誤:對象功能
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();
與超時錯誤調用它?
千恩萬謝
我想這可能是你的代碼的改進此刻,那並不解決您的問題,但我怕。 http://pastebin.com/6pvmdBKp – Undefined