admin管理员组文章数量:1342661
<html>
<head>
<script>
function test(){
return function(){
alert("hi");
}
}
test();
</script>
</head>
<body>
</body>
</html>
This is my code, can I ask why it doesnt work properly??
<html>
<head>
<script>
function test(){
return function(){
alert("hi");
}
}
test();
</script>
</head>
<body>
</body>
</html>
This is my code, can I ask why it doesnt work properly??
Share Improve this question edited Jun 29, 2013 at 16:04 Dimitar Dimitrov 15.2k9 gold badges53 silver badges81 bronze badges asked Jun 29, 2013 at 16:00 dramaseadramasea 3,50017 gold badges53 silver badges77 bronze badges 3- What are you expecting it to do? – Lars Kotthoff Commented Jun 29, 2013 at 16:01
- what do you want to return here? – A. Wolff Commented Jun 29, 2013 at 16:05
- i just want testing around javascript and learn how it works – dramasea Commented Jun 29, 2013 at 16:10
2 Answers
Reset to default 11Because you're returning your function but not invoking it. Try this:
test()();
Here is a fiddle
I think you might be confused. test()
returns a function reference, but it won't execute it.
You could do something like this
var alertFunc = test(); // return function reference
alertFunc(); // call the function
本文标签: how to return anonymous function in javascriptStack Overflow
版权声明:本文标题:how to return anonymous function in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743702157a2524505.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论