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 相关文章推荐
$.getJSON在IE下失效的原因分析及解决方法
Jun 16 Javascript
ExtJs动态生成treepanel的Json格式
Jul 19 Javascript
JavaScript仿静态分页实现方法
Aug 04 Javascript
学习JavaScript设计模式之代理模式
Jan 12 Javascript
JS表格组件神器bootstrap table详解(强化版)
May 26 Javascript
Angular.js中处理页面闪烁的方法详解
Mar 09 Javascript
JS实现按钮控制计时开始和停止功能
Jul 27 Javascript
JS实现div模块的截图并下载功能
Oct 17 Javascript
Vue.js实现表格渲染的方法
Sep 07 Javascript
Vue+Element-UI实现上传图片并压缩
Nov 26 Javascript
JavaScript如何实现图片处理与合成
May 29 Javascript
vue+高德地图实现地图搜索及点击定位操作
Sep 09 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 Hex RGB颜色值互换的使用
2013/05/10 PHP
PHP命名空间(Namespace)简明教程
2014/06/11 PHP
YII实现分页的方法
2014/07/09 PHP
php准确获取文件MIME类型的方法
2015/06/17 PHP
thinkPHP5.0框架整体架构总览【应用,模块,MVC,驱动,行为,命名空间等】
2017/03/25 PHP
PHP实现的mysql读写分离操作示例
2018/05/22 PHP
php日志函数error_log用法实例分析
2019/09/23 PHP
设定php简写功能的方法
2019/11/28 PHP
JavaScript获得选中文本内容的方法
2008/12/02 Javascript
ExtJs中简单的登录界面制作方法
2010/08/19 Javascript
jQuery Masonry瀑布流插件使用详解
2014/11/17 Javascript
Vue.js实现拖放效果的实例
2016/09/30 Javascript
jQuery的ajax中使用FormData实现页面无刷新上传功能
2017/01/16 Javascript
jq checkbox 的全选并ajax传参的实例
2017/04/01 Javascript
解决Vue页面固定滚动位置的处理办法
2017/07/13 Javascript
js实现canvas图片与img图片的相互转换的示例
2017/08/31 Javascript
vue单个组件实现无限层级多选菜单功能
2018/04/10 Javascript
JQuery中queue方法用法示例
2019/01/31 jQuery
关于JS解构的5种有趣用法
2019/09/05 Javascript
p5.js码绘“跳动的小正方形”的实现代码
2019/10/22 Javascript
JS寄快递地址智能解析的实现代码
2020/07/16 Javascript
python使用xauth方式登录饭否网然后发消息
2014/04/11 Python
在Django的模型中添加自定义方法的示例
2015/07/21 Python
python开发之tkinter实现图形随鼠标移动的方法
2015/11/11 Python
python学习教程之Numpy和Pandas的使用
2017/09/11 Python
Python 模拟员工信息数据库操作的实例
2017/10/23 Python
连接pandas以及数组转pandas的方法
2019/06/28 Python
python动态进度条的实现代码
2019/07/03 Python
Python Django框架防御CSRF攻击的方法分析
2019/10/18 Python
基于pycharm实现批量修改变量名
2020/06/02 Python
python 实现图片批量压缩的示例
2020/12/18 Python
美国购买和销售礼品卡平台:Raise
2017/01/13 全球购物
外贸英语专业求职信范文
2013/12/25 职场文书
2015年行政人事部工作总结
2015/05/13 职场文书
入党转正介绍人意见
2015/06/03 职场文书
2015年十月一日放假通知
2015/08/18 职场文书