JavaScript - Function() 构造函数



function 语句不是定义新函数的唯一方法;您可以使用Function()构造函数以及new运算符动态定义函数。

注意 - 构造函数是面向对象编程中的一个术语。您可能第一次接触时会感到不自在,这很正常。

语法

以下是使用Function( )构造函数以及new运算符创建函数的语法。

<script type = "text/javascript">
   <!--
      var variablename = new Function(Arg1, Arg2..., "Function Body");
   //-->
</script>

Function()构造函数可以接受任意数量的字符串参数。最后一个参数是函数体 - 它可以包含任意 JavaScript 语句,语句之间用分号分隔。

请注意,Function()构造函数没有传递任何指定其创建的函数名称的参数。使用Function()构造函数创建的未命名函数称为匿名函数。

示例

尝试以下示例。

<html>
   <head>
      <script type = "text/javascript">
         <!--
            var func = new Function("x", "y", "return x*y;");
            function secondFunction() {
               var result;
               result = func(10,20);
               document.write ( result );
            }
         //-->
      </script>
   </head>
   
   <body>
      <p>Click the following button to call the function</p>
      
      <form>
         <input type = "button" onclick = "secondFunction()" value = "Call Function">
      </form>
      
      <p>Use different parameters inside the function and then try...</p>
   </body>
</html>

输出

javascript_functions.htm
广告