标签:function i++ nts style logs fun 局部变量 class element
1.function init4() { 2. var pAry = document.getElementsByTagName("p"); 3. for( var i=0; i<pAry.length; i++ ) { 4. (function () { 5. var temp = i;//调用时局部变量 6. pAry[i].onclick = function() { 7. alert(temp); 8. } 9. })(); 10. } 11.}
标签:function i++ nts style logs fun 局部变量 class element
原文地址:http://www.cnblogs.com/xxfss2/p/7811295.html