admin管理员组文章数量:1344236
PopupFirstNameButton.addEventListener('click', FirstNameFunction);
// This gets called
function FirstNameFunction(){
alert("Hello");
}
// This does not
var FirstNameFunction = function (){
alert("Hello");
}
PopupFirstNameButton.addEventListener('click', FirstNameFunction);
// This gets called
function FirstNameFunction(){
alert("Hello");
}
// This does not
var FirstNameFunction = function (){
alert("Hello");
}
Share
Improve this question
edited Apr 19, 2011 at 14:05
Marcel Korpel
21.8k6 gold badges62 silver badges80 bronze badges
asked Apr 19, 2011 at 13:59
theJavatheJava
15k48 gold badges134 silver badges174 bronze badges
5 Answers
Reset to default 7var FirstNameFunction = function (){
alert("Hello");
}
this is an assignment statement , so only after this is executed, FirstNameFunction
gets assigned a value. So when PopupFirstNameButton.addEventListener('click', FirstNameFunction);
is executing, FirstNameFunction
is undefined
In the first example, you're creating a named function. The function's name is FirstNameFunction.
In the second example, you're creating an anonymous function (a function that has no name). However, you're also defining a variable named FirstNameFunction that holds a reference to the anonymous function. In this case FirstNameFunction is not the function itself, but is just a variable that references it.
The reason these differences are important when assigning the event handler as you did on the first line, is because global-scope named functions can be referenced from anywhere in the code, as long as their declaration has been parsed and interpreted before you try to use them. On the other hand, variables can only be used while they're in scope. That means after they're defined, and before they fall out of scope. Therefore, you should be able to use the second declaration method with your event handler assignment, as long as you declare the variable pointing to the anonymous function before you call the event handler and you do it in the same scope.
This works:
var FirstNameFunction = function (){
alert("Hello");
}
PopupFirstNameButton.addEventListener('click', FirstNameFunction, false);
This doesn't:
PopupFirstNameButton.addEventListener('click', FirstNameFunction, false); // FirstNameFunction is undefined!!
var FirstNameFunction = function (){
alert("Hello");
}
Neither does this:
function declareFunction()
{
var FirstNameFunction = function (){
alert("Hello");
}
} // FirstNameFunction falls out of scope here and is no longer declared
declareFunction(); // The anonymous function exists while this is running but the reference is lost when the function returns
PopupFirstNameButton.addEventListener('click', FirstNameFunction, false); // This doesn't work.
You are missing 3rd argument to addEventListener
again!
This happens because FirstNameFunction
used in line 1 is undefined yet with anonymous function syntax at line 9.
With function
syntax FirstNameFunction
symbol is in scope already.
The first function gets bound at pile time. The function foo()
syntax allows for look-ahead declaration of functions.
The second is a simple variable declaration. And you can't use variables, before they are declared...
Maybe because they both have the same name? I tried :
<HEAD>
<SCRIPT TYPE="text/JavaScript">
// This does not get called?
var FirstNameFunction = function (){
alert("Hello");
}
</SCRIPT>
</HEAD>
<BODY>
<button id="abutton" value="!"/>
<SCRIPT TYPE="text/JavaScript">
getById('abutton').addEventListener('click', FirstNameFunction);
</SCRIPT>
</BODY>
And it worked (in Chrome at least)
本文标签: javascriptDifference between these two ways of calling a functionStack Overflow
版权声明:本文标题:javascript - Difference between these two ways of calling a function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743699032a2523998.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论