JavaScript的Function详细


Posted in Javascript onNovember 14, 2006

Function (Built-in Object)
Function (?戎?ο?
Function is the object from which JavaScript functions are derived. Functions are first-class data types in JavaScript, so they may be assigned to variables and passed to functions as you would any other piece of data. Functions are, of course, reference types.

The Function object provides both static properties like length and properties that convey useful information during the execution of the function, for example, the arguments[] array.

Constructor
var instanceName = new Function([arg1 [, arg2 [, ...]] ,] body); 

The body parameter is a string containing the text that makes up the body of the function. The optional argN's are the names of the formal parameters the function accepts. For example:

var myAdd = new Function("x", "y", "return x + y");
var sum = myAdd(17, 34);

Properties

arguments[] An implicitly filled and implicitly available (directly usable as "arguments" from within the function) array of parameters that were passed to the function. This value is null if the function is not currently executing. (IE4+ (JScript 2.0+), MOZ, N3+ (JavaScript 1.1+), ECMA Edition 1)

arguments.callee Reference to the current function. This property is deprecated. (N4+, MOZ, IE5.5+)

arguments.caller Reference to the function that invoked the current function. This property is deprecated. (N3, IE4+)

arguments.length The number of arguments that were passed to the function. (IE4+ (JScript 2.0+), MOZ, N3+ (JavaScript 1.1+), ECMA Edition 1)

arity Numeric value indicating how many arguments the function expects. This property is deprecated. (N4+, MOZ)

caller Reference to the function that invoked the current function or null if called from the global context. (IE4+ (JScript 2.0+), MOZ, N3+)

constructor Reference to the constructor object that created the object. (IE4+ (JScript 2.0+), N3+ (JavaScript 1.1+), ECMA Edition 1)

length The number of arguments the function expects to be passed. (IE4+ (JScript 2.0+), N3+ (JavaScript 1.1+), ECMA Edition 1)

prototype Reference to the object's prototype. (IE4+ (JScript 2.0+), N3+ (JavaScript 1.1+), ECMA Edition 1)

Methods
apply(thisArg [, argArray]) Invokes the function with the object referenced by thisArg as its context (so references to this in the function reference thisArg). The optional parameter argArray contains the list of parameters to pass to the function as it is invoked. (IE5.5+ (JScript 5.5+), N4.06+ (JavaScript 1.3+), MOZ, ECMA Edition 3) 

call(thisArg [, arg1 [, arg2 [, ...]]]) Invokes the function with the object referenced by thisArg as its context (so references to this in the function reference thisArg). The optional parameters argN are passed to the function as it is invoked. (IE5.5+ (JScript 5.5+), N4.06+ (JavaScript 1.3+), MOZ, ECMA Edition 3)

toString() Returns the string version of the function source. The body of built-in and browser objects will typically be represented by the value "[native code]". (IE4+ (JScript 2.0+), N3+ (JavaScript 1.1+), MOZ, ECMA Edition 1)

valueOf() Returns the string version of the function source. The body of built-in and browser objects will typically be represented by the value "[native code]". (IE4+ (JScript 2.0+), N3+ (JavaScript 1.1+), MOZ, ECMA Edition 1)

Support
Supported in IE4+ (JScript 2.0+), N3+ (JavaScript 1.1+), MOZ, ECMAScript Edition 1.

Notes
General examples of functions are found throughout the book, but see Chapter 5 for examples of the advanced aspects of functions and the Function object.

Javascript 相关文章推荐
jquery选择器、属性设置用法经验总结
Sep 08 Javascript
js 遍历json返回的map内容示例代码
Oct 29 Javascript
js数字转换为float,取N位小数
Feb 08 Javascript
jquery中ajax函数执行顺序问题之如何设置同步
Feb 28 Javascript
Jquery结合HTML5实现文件上传
Jun 25 Javascript
JS日期格式化之javascript Date format
Oct 01 Javascript
jQuery实现动态删除LI的方法
May 30 jQuery
Vue使用mixins实现压缩图片代码
Mar 14 Javascript
JavaScript使用Math.random()生成简单的验证码
Jan 21 Javascript
JS实现单张或多张图片持续无缝滚动的示例代码
May 10 Javascript
JavaScript enum枚举类型定义及使用方法
May 15 Javascript
pnpm对npm及yarn降维打击详解
Aug 05 Javascript
取得父标签
Nov 14 #Javascript
多广告投放代码 推荐
Nov 13 #Javascript
js类 from qq
Nov 13 #Javascript
一段非常简单的让图片自动切换js代码
Nov 10 #Javascript
类似框架的js代码
Nov 09 #Javascript
二级域名转向类
Nov 09 #Javascript
JavaScript的面向对象(一)
Nov 09 #Javascript
You might like
php 字符过滤类,用于过滤各类用户输入的数据
2009/05/27 PHP
用PHP实现读取和编写XML DOM代码
2010/04/07 PHP
php上传apk后自动提取apk包信息的使用(示例下载)
2013/04/26 PHP
php 删除指定文件夹的实例讲解
2017/07/25 PHP
详解PHP中的外观模式facade pattern
2018/02/05 PHP
奉献给JavaScript初学者的编写开发的七个细节
2011/01/11 Javascript
JQuery入门——事件切换之hover()方法应用介绍
2013/02/05 Javascript
jQuery 无刷新分页实例代码
2013/11/12 Javascript
JavaScript对象属性检查、增加、删除、访问操作实例
2015/07/08 Javascript
javascript高级编程之函数表达式 递归和闭包函数
2015/11/29 Javascript
谈一谈jQuery核心架构设计
2016/03/28 Javascript
ES6新特性之模块Module用法详解
2017/04/01 Javascript
JavaScript实现简单的星星评分效果
2017/05/18 Javascript
js弹性势能动画之抛物线运动实例详解
2017/07/27 Javascript
微信小程序 wepy框架与iview-weapp的用法详解
2019/04/10 Javascript
原生js拖拽实现图形伸缩效果
2020/02/10 Javascript
vue中watch和computed的区别与使用方法
2020/08/23 Javascript
JS如何生成动态列表
2020/09/22 Javascript
Python编程入门之Hello World的三种实现方式
2015/11/13 Python
简单了解OpenCV是个什么东西
2017/11/10 Python
python中的tcp示例详解
2018/12/09 Python
python中import与from方法总结(推荐)
2019/03/21 Python
Python逐行读取文件内容的方法总结
2020/02/14 Python
python爬取音频下载的示例代码
2020/10/19 Python
前端实现背景虚化但内容清晰且自适应 的实例代码
2019/08/01 HTML / CSS
优质的学校老师推荐信
2013/10/28 职场文书
优秀女职工事迹材料
2014/02/06 职场文书
青春寄语大全
2014/04/09 职场文书
经管应届生求职信范文
2014/05/18 职场文书
大气污染防治方案
2014/05/19 职场文书
销售简历自我评价怎么写
2014/09/26 职场文书
陕西导游词
2015/02/04 职场文书
食堂采购员岗位职责
2015/04/03 职场文书
vue实现简单数据双向绑定
2021/04/28 Vue.js
MySQL系列之八 MySQL服务器变量
2021/07/02 MySQL
Python使用Beautiful Soup(BS4)库解析HTML和XML
2022/06/05 Python