JavaScript - 嵌套函数



在 JavaScript 1.2 之前,函数定义只能出现在顶层全局代码中,但 JavaScript 1.2 允许函数定义嵌套在其他函数中。但仍然存在限制,即函数定义不能出现在循环或条件语句中。这些对函数定义的限制仅适用于使用函数语句的函数声明。

正如我们将在下一章中讨论的那样,函数字面量(JavaScript 1.2 中引入的另一个特性)可以出现在任何 JavaScript 表达式中,这意味着它们可以出现在if和其他语句中。

示例

尝试以下示例来学习如何实现嵌套函数。

<html>
   <head>
      <script type = "text/javascript">
         <!--
            function hypotenuse(a, b) {
               function square(x) { return x*x; }
               return Math.sqrt(square(a) + square(b));
            }
            function secondFunction() {
               var result;
               result = hypotenuse(1,2);
               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
广告