vote up 3 vote down star
2

See:

for (var i in this.items) {
    var item = this.items[i];
    $("#showcasenav").append("<li id=\"showcasebutton_"+item.id+"\"><img src=\"/images/showcase/icon-"+item.id+".png\" /></li>");
    $("#showcasebutton_"+item.id).click(function() {
        alert(item.id);
        self.switchto(item.id);
    });
}

The problem is that the alerted item.id is always the id of the last item in the array (this.items). How to solve?

flag

I have this problem a lot too. The problem seems to be that javascript recycles the variable item, and uses the same variable for the called function . . . thus, always the last. – Walt W Aug 26 at 0:43

4 Answers

vote up 4 vote down check

The problem you have here is that the variable item changes with each loop. When you are referencing item at some later point, the last value it held is used. You can use a technique called a closure (essentially a function that returns a function) to quickly scope the variable differently.

    for (var i in this.items) {
            var item = this.items[i];
            $("#showcasenav").append("<li id=\"showcasebutton_"+item.id+"\"><img src=\"/images/showcase/icon-"+item.id+".png\" /></li>");
            $("#showcasebutton_"+item.id).click( 
                // create an anonymous function that will scope "item"
                (function(item) {
                   // that returns our function 
                   return function() {
                    alert(item.id);
                    self.switchto(item.id);
                   };
                })(item) // immediately call it with "item"
            );
    }

A side note - I see the hint of jQuery here - it also has an each function for arrays that can be a shortcut for some looping that you may or may not want to use instead of your for loop. Because of the way the scoping works in this call - you wont need to do that closure trick because "item" is the parameter of the function when it was called, not stored around like in your example.

$.each(this.items,function(i, item) {
  $("#showcasenav").append("<li id=\"showcasebutton_"+item.id+"\"><img src=\"/images/showcase/icon-"+item.id+".png\" /></li>");
  $("#showcasebutton_"+item.id).click(function() {
    alert(item.id);
    self.switchto(item.id);
  });
});
link|flag
as ugly as that is, it does work – Bart van Heukelom Aug 26 at 0:52
Found a more elegant solution for you after the fact - check out the advantage of using $.each() – gnarf Aug 26 at 1:12
Thanks. I'll try it tomorrow – Bart van Heukelom Aug 26 at 1:36
vote up 0 vote down

Javascript closures store references to their variables, so all of your onclick handlers are using the same variable.

You need to capture the variable in an intermediate function, like this:

function buildClickHandler(pageNumber) {
    return function()  {    //Create and return a new function
        alert(item.id);
        self.switchto(item.id);
    }
}

Then, use that function to create click handlers, like this:

for (var i in this.items) {
    var item = this.items[i];
    $("#showcasenav").append("<li id=\"showcasebutton_"+item.id+"\"><img src=\"/images/showcase/icon-"+item.id+".png\" /></li>");

    $("#showcasebutton_"+item.id).click(buildClickHandler(item));
}

Each call to buildClickHandler creates a separate closure that has its own variable.

link|flag
vote up 1 vote down

The other way to approach this is to make sure the = items[i] business is effectively done by calling a function. In shorthand, this:

for (var i in this.items) {
    (function(item) {
        $("#showcasenav").append("<li id=\"showcasebutton_"+item.id+"\"><img src=\"/images/showcase/icon-"+item.id+".png\" /></li>");
        $("#showcasebutton_"+item.id).click(function() {
            alert(item.id);
            self.switchto(item.id);
        });
    })(this.items[i]);
}

The anonymous function there is a bit messy, making it rather preferable to have a not-so-anonymous one around for the purpose, but it does the trick.

link|flag
vote up 0 vote down

try this loop

for (var i=0; i < this.items.length; i++) {
  this.items[i]
};
link|flag
No, the loop is fine. The problem is that every added list item sees the same "item.id" in the closure. – Bart van Heukelom Aug 26 at 0:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.