JavaScript function not defined in Firefox?

2019-04-19 11:55发布

I'm currently debugging the next tier of my website in Firefox and found a really weird bug in my JavaScript. Is it true, in Firefox, that functions need to be defined above any lines of code referencing those functions? That seems really strange to me.

Here's a simplified version of what was causing bugs:

var myClass = new MyClass(myCallback);

function myCallback() {
    // code
}

It threw the following bug: Error: myCallback is not defined

And here's what i needed to do for it to work in Firefox:

var myCallback = function() {
    // code
}

var myClass = new MyClass(myCallback);

So my question is: Is this normal behavior or was something else going on? I mean, do I need to take this into consideration when coding in the future?

1条回答
手持菜刀,她持情操
2楼-- · 2019-04-19 12:30

You must define the function before calling it when you initiate with the format:

myCallback = function() {
    // code
}

But it should be ok to define anywhere when you initiate with the format:

function myCallback() {
    // code
}
查看更多
登录 后发表回答