window
try{
if(test&&typeof(test)=="function"){
test();
}else{
alert("不存在的函數");
}
}catch(e){
}
}
function test(){
alert("函數執行……");
}
如果不存在
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20617.html
window
try{
if(test&&typeof(test)=="function"){
test();
}else{
alert("不存在的函數");
}
}catch(e){
}
}
function test(){
alert("函數執行……");
}
如果不存在