JS根据函数名字符串调用函数

  • Post author:
  • Post category:其他


转自百度知道:

https://zhidao.baidu.com/question/1733819401878068867.html

<script type="text/javascript">
  //自定义函数,用于弹出三个参数的值
  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]);
  }
  
 </script>
 <!--编写按钮,在点击事件中调用函数-->
 <button onclick="callAlert('alertFunc','tom','hello','world')" >测试函数调用</button>

可以用在将函数名作为参数传给子页面,然后子页面回调父级页面的对应函数。