function alertFunc(str1,str2,str3){ alert(str1); alert(str2); alert(str3); } function callAlert(functionName){ var func=eval(functionName); new func(arguments[1],arguments[2],arguments[3]); }
本文共 279 字,大约阅读时间需要 1 分钟。
function alertFunc(str1,str2,str3){ alert(str1); alert(str2); alert(str3); } function callAlert(functionName){ var func=eval(functionName); new func(arguments[1],arguments[2],arguments[3]); }
转载于:https://www.cnblogs.com/hualiu0/p/5745371.html