在函数表达式中传递参数

时间:2013-01-21 11:49:24

标签: javascript

(function() {
    var theArg;
     google = function(arg) {
        theArg = arg;
        alert(theArg);
     }

     yahoo = function() {
       alert(theArg);
     }
})();

google("hello");   

我没有在yahoo函数中收到警报。我在这里错过了什么,出了什么问题。

3 个答案:

答案 0 :(得分:1)

您正在定义一个名为yahoo的函数,但您无处调用它 - 因此我不希望您看到此警报。

答案 1 :(得分:1)

您永远不会调用yahoo函数。

这就像你期望的那样:

google("hello");   
yahoo();

答案 2 :(得分:1)

快速举例说明主要问题中的评论。

脚本

(function(exports) {

    var theArg, google, yahoo;

    google = function(arg) {
        theArg = arg;
        alert(theArg);
    }

    yahoo = function() {
        alert(theArg);
    }

    exports.yahoo = yahoo; // This is now available to the window

})(window);

// This will set initial value of 
google("Hello World");

HTML页面

<!-- This should now alert Hello World! -->
<button onclick="yahoo()">Yahoo</button> 

根据我的经验,如果你在不指定窗口的情况下调用它,它将不会发出任何警报,因为该函数将是未定义的。正如评论中所提到的,这是一个范围问题。