1. <html> 
  2. <head> 
  3. <title> 
  4. start! 
  5. </title> 
  6. <script type = "text/javascript"
  7. function ForIn(){ 
  8.     this.for = 1; 
  9.     this.in = 2; 
  10. </script> 
  11. </head> 
  12. <body> 
  13. <h3>zhangnanshishabi!</h3> 
  14. <script type = "text/javascript"
  15.  var forin = new ForIn(); 
  16.  for(var x in forin) 
  17.     alert(x+forin[x]); //这里如果不是forin[x],是forin.x的话,会返回未定义 
  18. </script> 
  19. <body> 
  20. </html>