自执行的匿名函数  的一个应用

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>Untitled</title>

</head>
<body>
 
<table>
    
<tr><td></td><td></td><td></td></tr>
 
</table>
  
<script type="text/javascript">
  
for(i=0;i<3;i++){
     document.getElementsByTagName(
'td')[i].innerHTML=i;

     document.getElementsByTagName(
'td')[i].onclick=(function(i){
          
return function(){alert(i);}
     })(i)
    }
  
</script>
</body>
</html>

 

相关文章: