var fun = "testFun"; // 函数的名称
try{
3 if($.isFunction(fun)){
eval("testFun('txt')"); // "txt"是函数参数
}
}catch(e){
$.alert(fun +'不是函数!');
}
注意使用“eval()”!!!
2022-06-17 21:45:58
var fun = "testFun"; // 函数的名称
try{
3 if($.isFunction(fun)){
eval("testFun('txt')"); // "txt"是函数参数
}
}catch(e){
$.alert(fun +'不是函数!');
}
注意使用“eval()”!!!
下一篇:Css基础-id选择器