首页 > 代码库 > JS中方法判断存在

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();
}

 

JS中方法判断存在