如何在 JavaScript 中使用可变数量的参数作为函数?
若要使用作为函数的可变数量的参数,请使用 arguments 对象。
示例
你可以尝试运行以下代码,在 JavaScript 中为函数实现参数
<html> <body> <script> function functionArgument(val1, val2, val3) { var res = ""; res += "Expected Arguments: " + functionArgument.length; res += "<br />"; res += "Current Arguments : " + arguments.length; res += "<br />"; res += "Each argument = " for (p = 0; p < arguments.length; p++) { res += "<br />"; res += functionArgument.arguments[p]; res += " "; } document.write(res); } functionArgument(20, 50, 80, "Demo Text!","Hello World", new Date()) </script> </body> </html>
广告