方法一:使用setTimeOut來實現
==========================================================
<script language="javascript">
/*Javascript中暫停功能的實現
Javascript本身沒有暫停功能(sleep不能使用)同時 vbscript也不能使用doEvents,故編寫此函數實現此功能。
javascript作為弱對象語言,一個函數也可以作為一個對象使用。
比如:
function Test(){
alert("hellow");
this.NextStep=function(){
alert("NextStep");
}
}
我們可以這樣調用 var myTest=new Test();myTest.NextStep();
我們做暫停時候可以吧一個函數分為兩部分,暫停操作前的不變,把要在暫停後執行的代碼放在this.NextStep中。
為了控制暫停和繼續,我們需要編寫兩個函數來分別實現暫停和繼續功能。
暫停函數如下:
*/
function Pause(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);
}
/*
該函數把要暫停函數放到數組window.eventList裡,同時通過setTimeout來調用繼續函數。
繼續函數如下:
*/
function GoOn(ind){
var obj=window.eventList[ind];
window.eventList[ind]=null;
if (obj.NextStep) obj.NextStep();
else obj();
}
/*
該函數調用被暫停函數的NextStep方法,如果沒有這個方法則重新調用該函數。
函數編寫完畢,我們可以作如下冊是:
*/
function Test(){
alert("hellow");
Pause(this,1000);//調用暫停函數
this.NextStep=function(){
alert("NextStep");
}
}
</script>
----------------------------------------------------------------------------------------------------
以下指令碼完成類似功能:
function checkuserinfo()
{
window.setTimeout(checkuses,5000);
function checkuses(){
alert("5秒後我運行");
}
}
==============================================================================
方法二:使用函數閉包來實現
===============================================================================
<input type="button" value="繼續" onclick='st();'/>
<script>
/*函數*/
function test(x)
{
alert(x++);
alert(x++);
return function()
{
alert(x++);
alert(x++);
}
}
var st = test(10);
</script>
這是基本形式,最多是多層嵌套問題。
===============================================================================
方法三:正則替換
===============================================================================
<html>
<body>
<button onclick="cont()">continue</button>
</body>
<script>
function aa()
{
alert("1");
pause();
alert("2");
}
aa();
var cont ;
function pause()
{
window.onerror = function(){return true;};
var re = /pause(\s|.)*}/;
var s = pause.caller.toString();
var r = s.match(re);
r = r[0];
var s2 = r.replace(/pause\(\);|}/g,"");
cont = function() {eval(s2);window.onerror=null;};
throw new Error();
}
</script>
</html>
這樣不能儲存程式暫停時的目前狀態...
之所以用閉包是為了儲存“呼叫堆疊”,包括所有全域和局部變數在暫停時的當前值等
用閉包配合正則替換的原理...實現Pause()就比較完美了^^
================================================================================
方法四:閉包+正則替換,有待實現