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