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>