JavaScript - 将参数传递给匿名函数

时间:2013-05-19 06:47:52

标签: javascript jquery

我正在呼叫一个匿名函数:

        closeSidebar(function() {
            alert("function called");
            $(this).addClass("current");
            setTimeout(function(){openSidebar()}, 300);
        });

但是$(this)没有按预期工作,我需要将它作为参数传递给函数。经过一番研究后,我认为这样可行:

            closeSidebar(function(el) {
               $(el).addClass("current");
               setTimeout(function(){openSidebar()}, 300);
            })(this);

但事实并非如此。如何向匿名函数添加参数?

jsFiddle - 单击右侧的按钮,它会动画,然后调用上面的函数。当按钮具有“当前”类时,它将在按钮的左侧有一个白色条,但该类永远不会改变。

3 个答案:

答案 0 :(得分:5)

您可以参考以下代码在匿名函数中传递参数。

var i, img;
for(i = 0; i < 5; i++)
{
  img = new Image();
  img.onload = function(someIndex)
  {
    someFunction(someIndex);
  }(i);
  img.src = imagePaths[i];
}
希望你会有所了解。

答案 1 :(得分:4)

你也可以这样做:

        closeSidebar(function(el) {
            $(el).addClass("current");
            setTimeout(function(){openSidebar()}, 300);
        }(this));

参数需要传递给匿名函数本身,而不是调用者。

答案 2 :(得分:1)

使用此方法添加参数:

var fn=function() { };
fn.apply(this,arguments);