复制代码 代码如下:
<scriptlanguage="javascript">
functionPause(obj,iMinSecond){
if(window.eventList==null)window.eventList=newArray();
varind=-1;
for(vari=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+")",1000);
}
functionGoOn(ind){
varobj=window.eventList[ind];
window.eventList[ind]=null;
if(obj.NextStep)obj.NextStep();
elseobj();
}
functionTest(){
alert("hellow");
Pause(this,1000);//调用暂停函数
this.NextStep=function(){
alert("NextStep");
}
}
</script>
