JavaScript Nested Functions函数详解

首页 / JavaScript入门教程 / JavaScript Nested Functions函数详解

在JavaScript 1.2之前,仅在Top Level Global代码中允许使用函数定义,但是JavaScript 1.2允许将函数定义也嵌套在其他函数中。仍然有一个限制,即函数定义不能出现在循环或条件中,这些对函数定义的限制仅适用于带有函数语句的函数声明。

请尝试运行以下示例,以了解如何实现嵌套函数。

无涯教程网

<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>

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

OpenResty从入门到实战 -〔温铭〕

后端技术面试 38 讲 -〔李智慧〕

.NET Core开发实战 -〔肖伟宇〕

NLP实战高手课 -〔王然〕

OAuth 2.0实战课 -〔王新栋〕

数据分析思维课 -〔郭炜〕

李智慧 · 高并发架构实战课 -〔李智慧〕

React Native 新架构实战课 -〔蒋宏伟〕

结构思考力 · 透过结构看表达 -〔李忠秋〕

好记忆不如烂笔头。留下您的足迹吧 :)