window.onload=function(){
try{
if(test&&typeof(test)=="function"){
test();
}else{
alert("不存在的函數");
}
}catch(e){
function test(){
alert("函數執行……");
如果不存在,會拋出異常,所以要加try……catch。