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

 var fun = "testFun";  // 函数的名称
try{
3  if($.isFunction(fun)){
     eval("testFun('txt')"); // "txt"是函数参数
}
}catch(e){
  $.alert(fun +'不是函数!');
}

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

上一篇:bzoj2668


下一篇:Css基础-id选择器