JS中方法判断存在

function test(){
    alert("test");
}
if(typeof test!='undefined')
{alert(1)
test();
}
else
{alert(2)}

if(typeof testStart!='undefined'){
  alert(3)  
}
else{
alert(4)
testStart();
}

if(typeof test=='function')//这是function匹配
{alert(1)}

 

posted @ 2016-10-31 10:51  Danlis  阅读(1213)  评论(0编辑  收藏  举报