gpt4 book ai didi

javascript - 如何在javascript中返回匿名函数

转载 作者:行者123 更新时间:2023-11-28 11:07:16 25 4
gpt4 key购买 nike

<html>
<head>
<script>
function test(){
return function(){
alert("hi");
}
}
test();
</script>
</head>
<body>
</body>
</html>

这是我的代码,请问为什么它不能正常工作?

最佳答案

因为您正在返回函数但没有调用它。试试这个:

test()();

这是一个fiddle

关于javascript - 如何在javascript中返回匿名函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17382041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com