创建临时对象

js 代码
  1. <script lanage=javascript>   
  2. function bbt(gg,b)   
  3. {   
  4.     this.gg=gg;   
  5.     this.b=b;   
  6.     for(i=1;i<5;i++)   
  7.     {   
  8.         this.gg=gg+i;   
  9.     }   
  10.     ggt=new ggt();   
  11.        
  12. }   
  13. function ggt()   
  14. {   
  15.     //document.write("我也被掉掉了");   
  16.     this.ggtt="我也被掉掉了";   
  17. }   
  18. function st()   
  19. {   
  20.     sst=new bbt("bb","t");   
  21.     document.write(sst.gg);   
  22.     document.write(ggt.ggtt);   
  23. }   
  24. </script>  

下面是HTML可以写在同一个文件里面

HTML代码
  1. <form name="form1" method="post" action="">  
  2.   <input type="submit" name="Submit" value="提交" onClick="javascript:st()">  
  3. </form>  

你可能感兴趣的:(JavaScript,html)