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]);

  }
 

  

相关文章:

  • 2022-01-26
  • 2021-12-18
  • 2021-12-20
  • 2021-12-20
  • 2021-08-16
  • 2021-11-30
  • 2022-02-08
猜你喜欢
  • 2021-06-24
  • 2022-02-12
  • 2021-12-10
  • 2021-12-20
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案