javascript停止執行的方法:1、開啟對應的js程式碼檔案;2、透過return方法終止函數執行操作,程式碼如「function testA(){alert('a');return;alert( 'b');}」。
本文操作環境:windows7系統、javascript1.8.5版、DELL G3電腦
javascript怎麼停止執行?
javascript 終止函數執行動作
1、如果終止一個函數的用return即可,實例如下:
function testA(){ alert('a'); alert('b'); alert('c'); }
testA(); 程式執行會依序彈出'a','b','c'。
function testA(){
alert('a');
return;
# alert('b') ;
alert('c');
}
testA(); 程式執行彈出'a'就會終止。
2、在函數中呼叫別的函數,在被呼叫函數終止的同時也希望呼叫的函數終止,實例如下:
function testC(){ alert('c'); return; alert('cc'); } function testD(){ testC(); alert('d'); }
testD(); 我們看到在testD中呼叫了testC,在testC中想透過return把testD也終止了,事與願違return只終止了testC,程式執行會依次彈出'c','d'。
function testC(){
alert('c');
return false;
# alert('cc');
}
function testD(){
if(!testC()) return;
alert('d');
}
testD(); 兩個函數做了修改,testC中返回false,testD中對testC的返回值做了判斷,這樣終止testC的同時也能將testD終止,程式執行彈出'c'便會終止。
推薦學習:《javascript基礎教學》
以上是javascript怎麼停止執行的詳細內容。更多資訊請關注PHP中文網其他相關文章!