转载 JavaScript Sleep函数收藏

function Sleep(obj,iMinSecond)
 {
  if (window.eventList==null)
  window.eventList=new Array();
  var ind=-1;
  for (var i=0;i<window.eventList.length;i++)
  { 
   if (window.eventList[i]==null)
   {
    window.eventList[i]=obj;  
    ind=i; 
    break; 
   }
  }
  if (ind==-1)
  { 
   ind=window.eventList.length; 
   window.eventList[ind]=obj;
  }
  setTimeout("GoOn(" + ind + ")",iMinSecond);
 }
 function GoOn(ind)
 {
  var obj=window.eventList[ind];
  window.eventList[ind]=null;
  if (obj.NextStep) obj.NextStep();
  else obj();
 }
 function Test()
 { 
  alert("sleep");
  Sleep(this,100);
  this.NextStep=function()
  { 
  alert("continue");
  }
 }

发表于 @ 2007年02月25日 16:37:00|评论(loading...)

新一篇: Nids.h详细注释 | 旧一篇: 第十天 里程碑

Csdn Blog version 3.1a
Copyright © chinablueker