当前位置: 代码迷 >> JavaScript >> 这种循环怎么做
  详细解决方案

这种循环怎么做

热度:367   发布时间:2012-03-09 16:54:57.0
这种循环如何做?
我想循环可能存在的子窗口并将其关闭,不知该如何做,现在只能用这种呆方法    
          try{win0.close()}catch(e){}
          try{win1.close()}catch(e){}
          try{win2.close()}catch(e){}
          try{win3.close()}catch(e){}
          try{win4.close()}catch(e){}
          try{win5.close()}catch(e){}
          try{win6.close()}catch(e){}
          try{win7.close()}catch(e){}
          try{win8.close()}catch(e){}   ......


------解决方案--------------------
for (var n=0; n <9;n++)
eval( "win " + n + ".close() ");
  相关解决方案