假设funcName为函数名字,用如下方法就可以达到目标
try{ if(typeof(eval(funcName))=="function"){ funcName(); } }catch(e){ //alert("not function"); }
一定要添加try catch块,否则不起作用。