views:

129

answers:

2

in jquery 1.4.2, ff 3.6.6:

The following code produces three divs, which write messages to the firebug console as you would expect. However, if you uncomment out the loop and comment out the 3 lines doing it manually, it doesn't work - mousing over any of the divs results in "three" being written to the console.

Why are these two methods any different than each other? In each one you use a selector to find the element and add an event to it.

<head>
<script type="text/javascript" src="/media/js/jquery.js"></script>
<script>

$( document ).ready( function() {

  $("#one").mouseenter(function(){console.log("one")})
  $("#two").mouseenter(function(){console.log("two")})
  $("#three").mouseenter(function(){console.log("three")})

  //  names=['one','two','three'];
  //  for (k in names){
  //    id=names[k]
  //    $("#"+id).mouseenter(function(){console.log(id)})
  //  }
})
</script>
</head>

<body>
  <span id="one">ONE</span>
  <p><span id="two">TWO</span></p>
  <p><span id="three">THREE</span></p>
</body>
+10  A: 

You would be having a very common closure problem in the for in loop.

Variables enclosed in a closure share the same single environment, so by the time the mouseenter callback is called, the loop will have run its course and the id variable will be left pointing to the value of the last element of the names array.

This can be quite a tricky topic, if you are not familiar with how closures work. You may want to check out the following article for a brief introduction:

You could solve this with even more closures, using a function factory:

function makeMouseEnterCallback (id) {  
  return function() {  
    console.log(id);
  };  
}

// ...

var id, k,
    names = ['one','two','three'];

for (k = 0; k < names.length; k++) {
  id = names[k];
  $("#" + id).mouseenter(makeMouseEnterCallback(id));
}

You could also inline the above function factory as follows:

var id, k, 
    names = ['one','two','three'];

for (k = 0; k < names.length; k++) {
  id = names[k];
  $("#" + id).mouseenter((function (p_id) {  
    return function() {  
      console.log(p_id);
    };  
  })(id));
}

Any yet another solution could be as @d.m suggested in another answer, enclosing each iteration in its own scope:

var k, 
    names = ['one','two','three'];

for (k = 0; k < names.length; k++) {
  (function() {
    var id = names[k];
    $("#" + id).mouseenter(function () { console.log(id) });
  })();
}

Although not related to this problem, it is generally recommended to avoid using a for in loop to iterate over the items of an array, as @CMS pointed out in a comment below (Further reading). In addition, explicitly terminating your statements with a semicolon is also considered a good practice in JavaScript.

Daniel Vassallo
Good answer (+1) but would be even better if you showed him how to do it in a loop by new-ing up new strings for the IDs.
Bernhard Hofmann
Also, although is not the problem, I'll not ever get tired of recommending to **avoid** the `for-in` statement for "iterate" over array objects. [More info](http://stackoverflow.com/questions/3010840/loop-through-array-in-javascript/3010848#3010848)
CMS
@Bernhard: Thanks... I'll update my answer with a couple of solutions :)
Daniel Vassallo
@Daniel: Small typos, the function name on the first example, and immediate invocation of the anonymous function of the second are missing.
CMS
@CMS: Oops. Thanks. Fixed :)
Daniel Vassallo
+2  A: 

This happens because when the code of the anonymous function function(){console.log(id)} is executed, the value of id is three indeed.

To can use the following trick to enclose the value on each loop iteration into the anonymous callback scope:

names=['one', 'two', 'three'];
for (var k in names) {
    (function() {
        var id = names[k];
        $("#"+id).mouseenter(function(){ console.log(id) });
    })();
}
d.m
It will not work, because `id` is undeclared and it will become a property of the global object (`window.id`). You need to bind it to the new variable environment (use `var`!).
CMS
Thank you, CMS, silly me copy-pasted it without checking.
d.m
@d.m.: You're welcome. Be aware also that `k` will become global, and that the purpose of the `for-in` statement isn't really to *iterate* over the indexes of array objects, it's purpose is to *enumerate* object properties.
CMS
@CMS, oh, dang, sorry; just awaken, not in this world yet.I know about for-in; personally I'd prefer the `for (var i = names.length - 1; i >= 0; i--)`loop in this case, but as I said already, I just copied the fastmultiplication's code.
d.m
@d.m.: No problem! Yeah, any *secuential loop*, and if the order of iteration is not important a reverse loop e.g. `var i = names.length; while (i--) {/**/}` is enough. Cheers!
CMS