WEB开发网
开发学院WEB开发Jsp length 属性 (Function) 阅读

length 属性 (Function)

 2008-01-05 08:15:04 来源:WEB开发网   
核心提示: 返回函数定义的参数数目, functionName.length所必须的functionName 参数是被讨论的函数的名称,length 属性 (Function), 说明函数的 length 属性是在创建函数实例时由 Scripting 引擎初始化的,值是函数定义中参数的数目,假如调用函数时参数的数目和它的 len

 

返回函数定义的参数数目。

functionName.length

所必须的functionName 参数是被讨论的函数的名称。

说明

函数的 length 属性是在创建函数实例时由 Scripting 引擎初始化的,值是函数定义中参数的数目。

假如调用函数时参数的数目和它的 length 属性值不同,那么这时发生的情况将依靠于函数本身。

下面的例子说明了 length 属性的用法:

function ArgTest(a, b){
  var i, s = "The ArgTest function eXPected ";
  var numargs = ArgTest.arguments.length;
  var expargs = ArgTest.length;
  if (expargs < 2)
   s += expargs + " argument. ";
  else
   s += expargs + " arguments. ";
  if (numargs < 2)
   s += numargs + " was passed.";
  else
   s += numargs + " were passed.";
  return(s);
}

要求

版本 2

请参阅

arguments 属性 length 属性 (Array) length 属性 (String)

应用于: Function 对象


Tags:length 属性 Function

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接