js 判断某个方法是否存在


js 判断某个方法是否存在

1
2
3
4
5
6
7
8
9
10
11
12
window.onload = function(){
try{
if(test && typeof(test) == "function"){
test();
}
}catch(e){
alert("方法不存在");
}
}
function test(){
  alert("我是test()方法");
}