js jquery 判断函数是否存在($.isFunction函数的使用)

时间:2021-11-04 00:40:50
 var fun = "testFun";  // 函数的名称
try{
3  if($.isFunction(fun)){
     eval("testFun('txt')"); // "txt"是函数参数
}
}catch(e){
  $.alert(fun +'不是函数!');
}

注意使用“eval()”!!!