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