js判断函数是否存在


js判断函数是否存在

1
2
3
4
5
if(typeof FunName === "function") { //是函数    其中 FunName 为函数名称
alert("is function");
} else { //不是函数
alert("not is function");
}