Javascript判斷是否存在函數(shù)的方法_javascript技巧
來源:懂視網(wǎng)
責編:小采
時間:2020-11-27 21:06:25
Javascript判斷是否存在函數(shù)的方法_javascript技巧
Javascript判斷是否存在函數(shù)的方法_javascript技巧: 代碼如下: window.onload=function(){ try{ if(test&&typeof(test)==function){ test(); }else{ alert(不存在的函數(shù)); } }catch(e){ } } function test(){ alert(函數(shù)執(zhí)行……); } 如果不存在,會拋出異常,所以要
導讀Javascript判斷是否存在函數(shù)的方法_javascript技巧: 代碼如下: window.onload=function(){ try{ if(test&&typeof(test)==function){ test(); }else{ alert(不存在的函數(shù)); } }catch(e){ } } function test(){ alert(函數(shù)執(zhí)行……); } 如果不存在,會拋出異常,所以要
代碼如下:
window.onload=function(){
try{
if(test&&typeof(test)=="function"){
test();
}else{
alert("不存在的函數(shù)");
}
}catch(e){
}
}
function test(){
alert("函數(shù)執(zhí)行……");
}
如果不存在,會拋出異常,所以要加try……catch。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
Javascript判斷是否存在函數(shù)的方法_javascript技巧
Javascript判斷是否存在函數(shù)的方法_javascript技巧: 代碼如下: window.onload=function(){ try{ if(test&&typeof(test)==function){ test(); }else{ alert(不存在的函數(shù)); } }catch(e){ } } function test(){ alert(函數(shù)執(zhí)行……); } 如果不存在,會拋出異常,所以要