Jump to content
  • 0

непонятное сообщение об ошибке


cyklop77
 Share

Question

помогите пожалуйста понять почему следующий код


function Clock(options) {
var elem = options.elem;

var self = this;

var flag,
nowTime;

//this.start();

self.nowTime = function() {
this.nowTime = date();
};

elem.on('click', '#clock-start', this.start);

this.start = function(){
console.log(44);
}
}

var clock = new Clock({
elem: $('#clock')
});

выдаёт в консоли ошибку

TypeError: this.start is not a function

при этом если тело проблемной функции я помещаю непосредственно в обработчик в виде безымянной функции, то код работает без ошибок

Edited by cyklop77
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Что за фреймворк? Попробуй объявить this.start раньше ее использования.

jquery

спасибо, изменение в порядке объявления помогло. сбило с толку это. там работает как ни странно

Edited by cyklop77
Link to comment
Share on other sites

  • 0

        this.start = function(){
console.log(44);
}

Есть function declaration, а есть function expreshion. Вобщем в следующих объявлениях есть разница:


// в случае когда ф-ию объявляют следующим образом,
// мы можем к ней обратиться в любом месте, даже
// до того, как она объявлена.
function test(){
//код
}
// а данный случай, позволяет нам обратиться
// к ф-ии только после того, как интерпретатор
// дойдет до нее сверху вниз.
test2 = function(){
//код
}

Советую гениальнейшую статью http://dmitrysoshnikov.com/ecmascript/ru-chapter-5-functions/#deklaratsiya-funktsii-function-declaration .

Edited by moron
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy