gpt4 book ai didi

javascript - 为关闭声明函数两次?

转载 作者:行者123 更新时间:2023-11-30 12:59:10 25 4
gpt4 key购买 nike

我有这样的东西:

// This executes once when the page loads.
(function() {
//under some conditions, it calls:
myfunction();

function myFunction() {
// defines function
}
}());

function thisIsCalledByAnOnClick() {
// HERE I need to call myFunction()
}

我不想从控制台调用 myFunction(),所以我将它包含在匿名函数中。那么,如果我需要在其他地方调用它,我是声明它两次还是我该怎么做?

最佳答案

在闭包内 thisIsCalledByAnOnClick 可以访问 myFunction。如需更多信息,请参阅:module pattern .

// This executes once when the page loads.
var modul = function() {
//under some conditions, it calls:
myfunction();

function myFunction() {
// defines function
}

return {
thisIsCalledByAnOnClick : function() {
// HERE I need to call myFunction()
}
};
}();

关于javascript - 为关闭声明函数两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17902230/

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