如何使用 Function() 构造函数定义 JavaScript 函数?
Function() 构造函数需要任意数量的字符串自变量。最后一个自变量是函数体,其中可以包含任意 JavaScript 语句,它们由分号分隔。
示例
你可以尝试运行以下代码,使用 new Function 构造函数调用一个函数
<html> <head> <script> var func = new Function("x", "y", "return x*y;"); function multiplyFunction(){ var result; result = func(15,35); document.write ( result ); } </script> </head> <body> <p>Click the following button to call the function</p> <form> <input type = "button" onclick = "multiplyFunction()" value = "Call Function"> </form> </body> </html>
广告