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 pagination插件实现无刷新分页代码
Oct 13 Javascript
jQuery为iframe的body添加click事件的实现代码
Apr 07 Javascript
JavaScript学习笔记之内置对象
Jan 22 Javascript
纯js实现仿QQ邮箱弹出确认框
Apr 29 Javascript
第一篇初识bootstrap
Jun 21 Javascript
jquery计算出left和top,让一个div水平垂直居中的简单实例
Jul 13 Javascript
JavaScript获取当前时间向前推三个月的方法示例
Feb 04 Javascript
浅析bootstrap原理及优缺点
Mar 19 Javascript
详解如何在Vue2中实现组件props双向绑定
Mar 29 Javascript
vue.js删除动态绑定的radio的指定项
Jun 02 Javascript
BetterScroll 在移动端滚动场景的应用
Sep 18 Javascript
vuex实现购物车的增加减少移除
Jun 28 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 MYSQL乱码问题,使用SET NAMES utf8校正
2009/11/30 PHP
php中inlcude()性能对比详解
2012/09/16 PHP
php自动加载autoload机制示例分享
2014/02/20 PHP
php基于双向循环队列实现历史记录的前进后退等功能
2015/08/08 PHP
PHP简单获取随机数的常用方法小结
2017/06/07 PHP
laravel框架与其他框架的详细对比
2019/10/23 PHP
PHP执行系统命令函数实例讲解
2021/03/03 PHP
可编辑下拉框的2种实现方式
2014/06/13 Javascript
javascript数组去重的方法汇总
2015/04/14 Javascript
jQuery检测输入的字符串包含的中英文的数量
2015/04/17 Javascript
JQuery中DOM事件合成用法实例分析
2015/06/13 Javascript
在Node.js中使用Javascript Generators详解
2016/05/05 Javascript
jquery插件uploadify多图上传功能实现代码
2016/08/12 Javascript
浅谈jQuery为哪般去掉了浏览器检测
2016/08/29 Javascript
分分钟玩转Vue.js组件(二)
2017/03/01 Javascript
详解JavaScript中return的用法
2017/05/08 Javascript
js笔试题-接收get请求参数
2019/06/15 Javascript
微信小程序自定义头部导航栏和导航栏背景图片 navigationStyle问题
2019/07/26 Javascript
vue绑定数字类型 value为数字的实例
2020/08/31 Javascript
python操作MySQL 模拟简单银行转账操作
2017/09/27 Python
Python cookbook(数据结构与算法)将多个映射合并为单个映射的方法
2018/04/19 Python
Python的argparse库使用详解
2018/10/09 Python
pybind11和numpy进行交互的方法
2019/07/04 Python
python按行读取文件并找出其中指定字符串
2019/08/08 Python
python使用Matplotlib改变坐标轴的默认位置
2019/10/18 Python
Python3实现发送邮件和发送短信验证码功能
2020/01/07 Python
Python csv文件记录流程代码解析
2020/07/16 Python
django中ImageField的使用详解
2020/12/21 Python
python通用数据库操作工具 pydbclib的使用简介
2020/12/21 Python
英文版销售经理个人求职信
2013/11/20 职场文书
前台接待岗位职责
2013/12/03 职场文书
体育教师自荐信范文
2013/12/16 职场文书
博士毕业生自我鉴定范文
2014/04/13 职场文书
低碳生活倡议书
2014/04/14 职场文书
快递员岗位职责
2014/09/12 职场文书
知识就是力量演讲稿
2014/09/13 职场文书