How can one de-reference JavaScript variables when enclosing an outer scope - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T06:46:47Zhttp://stackoverflow.com/feeds/question/442985http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/442985/how-can-one-de-reference-javascript-variables-when-enclosing-an-outer-scope2How can one de-reference JavaScript variables when enclosing an outer scopemeouw2009-01-14T13:43:15Z2009-01-15T07:28:39Z
<p>Ok, here's a problem script.</p>
<pre><code>var links = [ 'one', 'two', 'three' ];
for( var i = 0; i < links.length; i++ ) {
var a = document.createElement( 'div' );
a.innerHTML = links[i];
a.onclick = function() { alert( i ) }
document.body.appendChild( a );
}
</code></pre>
<p>This script generates three divs: one, two and three, using an array.<br />
I've set a (Dom0 for simplicity) click handler on each div which alerts the index of its position in the array. - except it doesn't! It always alerts 3, the last index of the array.<br />
This is because the 'i' in 'alert( i )' is a live reference to the outer scope (in this case global) and its value is 3 at the end of the loop.
What it needs is a way of de-referencing i within the loop. </p>
<p>This is one solution and I tend to use it. </p>
<pre><code>var links = [ 'one', 'two', 'three' ];
for( var i = 0; i < links.length; i++ ) {
var a = document.createElement( 'div' );
a.innerHTML = links[i];
a.i = i; //set a property of the current element with the current value of i
a.onclick = function() { alert( this.i ) }
document.body.appendChild( a );
}
</code></pre>
<p>Does anyone else do anything different?<br />
Is there a really smart way of doing it?<br />
Does anyone know how the libraries do this?</p>
http://stackoverflow.com/questions/442985/how-can-one-de-reference-javascript-variables-when-enclosing-an-outer-scope/442999#44299910Answer by Greg for How can one de-reference JavaScript variables when enclosing an outer scopeGreg2009-01-14T13:46:11Z2009-01-14T13:46:11Z<p>You need to use this little closure trick - create and execute a function that returns your event handler function.</p>
<pre><code>var links = [ 'one', 'two', 'three' ];
for( var i = 0; i < links.length; i++ ) {
var a = document.createElement( 'div' );
a.innerHTML = links[i];
a.onclick = (function(i) { return function() { alert( i ) } })(i);
document.body.appendChild( a );
}
</code></pre>
http://stackoverflow.com/questions/442985/how-can-one-de-reference-javascript-variables-when-enclosing-an-outer-scope/443035#4430353Answer by Christoph for How can one de-reference JavaScript variables when enclosing an outer scopeChristoph2009-01-14T13:57:46Z2009-01-14T14:03:58Z<p>I'd stay with your own solution, but modify it in the following way:</p>
<pre><code>var links = [ 'one', 'two', 'three' ];
function handler() {
alert( this.i );
}
for( var i = 0; i < links.length; i++ ) {
var a = document.createElement( 'div' );
a.innerHTML = links[i];
a.i = i; //set a property of the current element with the current value of i
a.onclick = handler;
document.body.appendChild( a );
}
</code></pre>
<p>This way, only one function object gets created - otherwise, the function literal will be evaluated on every iteration step!</p>
<p>A solution via closure is even worse performance-wise than your original code.</p>
http://stackoverflow.com/questions/442985/how-can-one-de-reference-javascript-variables-when-enclosing-an-outer-scope/443077#4430770Answer by some for How can one de-reference JavaScript variables when enclosing an outer scopesome2009-01-14T14:15:53Z2009-01-15T07:28:39Z<p>I recommend <a href="http://stackoverflow.com/users/48015/">Christoph</a>s way <a href="http://stackoverflow.com/questions/442985/#443035">with one function</a> since it uses less resources.</p>
<p>Below is another way that stores the value on the function (that is possible because a function is an object) and users <em>argument.callee</em> to get a reference to the function inside the function. In this case it doesn't make much sense, but I show the technique since it can be useful in other ways:</p>
<pre><code>var links = [ 'one', 'two', 'three' ];
for( var i = 0; i < links.length; i++ ) {
var a = document.createElement( 'div' );
a.innerHTML = links[i];
a.onclick = function() { alert( arguments.callee.i ) }
a.onclick.i = i;
document.body.appendChild( a );
}
</code></pre>
<p>The technique is useful when your function needs to store persistent information between calls. Replace the part above with this:</p>
<pre><code>a.id="div"+i;
a.onclick = function() {
var me = arguments.callee;
me.count=(me.count|0) + 1;
alert( me.i );
}
</code></pre>
<p>and you can later retrieve how many times it was called:</p>
<pre><code>for( var i = 0; i < links.length; i++ ){
alert(document.getElementById("div"+i).onclick.count);
}
</code></pre>
<p>It can also be used to cache information between calls. </p>
http://stackoverflow.com/questions/442985/how-can-one-de-reference-javascript-variables-when-enclosing-an-outer-scope/445209#4452090Answer by Prestaul for How can one de-reference JavaScript variables when enclosing an outer scopePrestaul2009-01-15T00:29:13Z2009-01-15T00:29:13Z<p>RoBorg's method is definitely the way to go, but I like a slightly different syntax. Both accomplish the same thing of creating a closure that preserves 'i', this syntax is just clearer to me and requires less modification of your existing code:</p>
<p>var links = [ 'one', 'two', 'three' ];</p>
<pre><code>for( var i = 0; i < links.length; i++ ) (function(i) {
var a = document.createElement( 'div' );
a.innerHTML = links[i];
a.onclick = function() { alert( i ) }
document.body.appendChild( a );
})(i);
</code></pre>