Javascript传递函数名作为参数,进行执行
function test(fun,param){????? fun(param);}
function run(param){????? alert(param);
}
?
test(run,'hello');