实现代码如下:

window.onload=function(){
try{

if(test&&typeof(test)=="function"){
test();
}else{
alert("不存在的函数");
}
}catch(e){
}
}
function test(){
alert("函数执行……");
}

如果不存在,会抛出异常,所以要加try……catch。

以上就是【Javascript 判断是否存在函数的方法】的全部内容了,欢迎留言评论进行交流!

赞(0) 踩(0)
发表我的评论

最新评论

  1. 暂无评论