Function: caller,arguments.callee,call,apply,

caller

返回调用当前函数的函数的引用!

The caller property is available only within the body of a function. If used outside a function declaration, the caller property is null.

If the currently executing function was invoked by the top level of a JavaScript program, the value of caller is null.

The this keyword does not refer to the currently executing function, so you must refer to functions and Function objects by name, even within the function body.

The caller property is a reference to the calling function, so

Caller JavaScript Code
Caller Html Code


PS: Opera 不支持Caller,返回 undefiend ,( 是不是很BT? ) {更新下,新的Opera9.5+已经支持}


arguments.callee

返回当前运行的Function函数体,说起很别扭,因为alert(arguments.callee) 输出的确实是一段当前函数体
(其实可以理解为就是调用函数本身,即可实现匿名函数的递归调用)

a property whose value is the function reference.

arguments.callee refers to the function that is currently running. It provides a way for an unnamed function to refer to itself. This property is defined only within a function body.

function(x) {
    if (x <= 1) return 1;
    return x * arguments.callee(x-1);
}

Callee JS Code


arguments.length :实际参数长度
arguments.callee.length :形参长度
DemoCallee === arguments.callee :这两者是相等的


call,apply

ECMAScript specifies two methods that are defined for all functions, call() and apply(). These methods allow you to invoke a function as if it were a method of some other object. The first argument to both call() and apply() is the object on which the function is to be invoked; this argument becomes the value of the this keyword within the body of the function. Any remaining arguments to call() are the values that are passed to the function that is invoked.

实际上就是改变当前函数的函数指针,类似对象冒充。这两个方法的不同只是在第个参数上

Call JS Code
原文地址:https://www.cnblogs.com/qieqing/p/1224060.html