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>
You would be having a very common closure problem in the
for inloop.Variables enclosed in a closure share the same single environment, so by the time the
mouseentercallback is called, the loop will have run its course and theidvariable will be left pointing to the value of the last element of thenamesarray.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:
You could also inline the above function factory as follows:
Any yet another solution could be as @d.m suggested in another answer, enclosing each iteration in its own scope:
Although not related to this problem, it is generally recommended to avoid using a
for inloop 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.