关于arguments.callee.caller.arguments[0]获得event的一些问题

先从一个简单的例子说起,一个简单的button控件如下:

< input  type =‘button‘  name =‘mybtn‘  id =‘mybtn‘  onclick =‘myFunc()‘ />

然后为其注册事件,这样的情况,怎么在javascript里获取event呢,特别是firefox的情况。请看:

< script  type =‘text/javascript‘ > 
function  myFunc(){
    var  ev  =  window.event  ||  arguments.callee.caller.arguments[ 0 ]
       ,et = ev.srcElement || ev.target;

alert(et.tagName);   
}
</ script >

不出意外的话,在ie/ff下,上面例子都将输出INPUT,即是触发click事件节点的标签名,ie的event获取这里就不说了,重点说说ff下的情况。

这里的arguments.callee.caller.arguments[0]看起来又长又怪,为什么在firefox的情况下,这个东西就是event呢?

首先得了解arguments.callee是什么东西,caller又是什么样的属性?

argments.callee就是函数体本身,arguments.callee.caller就是函数体的调用函数体

简单例子如下:

< script type = ‘ text/javascript ‘ > 
function  a(){
    b();
}

function  b(){
    alert(b  ===  arguments.callee)
    alert(b.caller  ===  a)
    alert(arguments.callee.caller  ===  a)

}
a();
< / script>

不出意外,上面的例子将输出3个true,表明当a()调用时,函数b与函数a的关系。

好,弄清楚了arguments.callee与caller,我们再把原先的例子改改,

< script type = ‘ text/javascript ‘ > 
function  myFunc(){
   alert(arguments.callee.caller.toString())
    var  ev  =  window.event  ||  arguments.callee.caller.arguments[ 0 ]
       ,et  =  ev.srcElement  ||  ev.target;
}
< / script>

我们把argument.callee.caller的函数体输出,看看到底在ie和ff下有何区别.

可以看到ie下输出为

function  anonymous(){
  myFunc()
}

ff下输出为

function  onclick(event){
   myFunc();
}

由此看出在html控件中直接注册事件 在ie/ff下表现的不同, ie下定义了一个匿名函数,内部再执行用户定制的函数(myFunc),而ff下则有所

不同,首先ff下定义了一个与节点事件同名的函数,这里是onclick事件,所以是function onclick,然后event作为一个参数传入,内部再执行myFunc.

所以当事件触发时,在myFunc里,argument.callee.caller就是指向function onclick,当然,argument.callee.caller.arguments[0]即为event了.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
</head>
<body>  

<input type=‘button‘ name=‘mybtn‘ id=‘mybtn‘ />  

<script type=‘text/javascript‘>
function myFunc(){
    alert(arguments.callee.caller.toString())
   var ev = window.event || arguments.callee.caller.arguments[0] ,et = ev.srcElement || ev.target;
}  

function myFunc2( e ){
    alert(e);
    alert(arguments[0]);
}  

function a(){
     b();
}  

function b(){
     alert(b === arguments.callee)
     alert(b.caller === a)
     alert(arguments.callee.caller === a)
}  

function addEventHandler(oTarget, sEventType, fnHandler) {
    if (oTarget.addEventListener) {
        oTarget.addEventListener(sEventType, fnHandler, false);
    } else if (oTarget.attachEvent) {
        oTarget.attachEvent("on" + sEventType, fnHandler);
    } else {
        oTarget["on" + sEventType] = fnHandler;
    }
};  

var BindAsEventListener_t = function(object, fun) {
    var args = Array.prototype.slice.call(arguments).slice(2);
    return function() {
        return fun.apply(object, [arguments[0] || window.event].concat(args));
    }
}  

addEventHandler( document.getElementByIdx_x("mybtn") , "click" , myFunc );  //1  

//addEventHandler( document.getElementByIdx_x("mybtn") , "click" , myFunc2);  //2
//myFunc2();
</script>
</body>
</html>  

会发现,firebug会提示“arguments.callee.caller is null ” 。

转载:http://www.cnblogs.com/funlake/archive/2009/04/07/1431238.html

时间: 2024-12-28 01:19:18

关于arguments.callee.caller.arguments[0]获得event的一些问题的相关文章

JavaScript中的內定物件與函式: arguments, callee, caller, this, apply(), call()

arguments, caller, callee, this都是用在函式(function)內的特殊內定物件.而apply()及call()則是用來呼叫函式的不同作法. arguments可用來取得function傳入的實際變數Array.這個變數特別適合用在撰寫”多形”(Polymorphism)函式上,即可以根據不同的傳入參數做不同的處理.範例一 – 加總函式 function sum() { var total = 0; for( var i=0; i<arguments.length;

JavaScript中的arguments,callee,caller,call,appy

<script language="JavaScript">/* * 演示arguments的用法,如何获取实参数和形数数 */function argTest(a,b,c,d){    var numargs = arguments.length;     // 获取被传递参数的数值.    var expargs = argTest.length;       // 获取期望参数的数值.    alert("实参数目为:"+numargs)    a

js arguments.callee &amp; caller的用法及区别

在函数内部,arguments.callee该属性是一个指针,指向拥有这个arguments对象的函数; 而函数对象的另一个属性:caller,这个属性保存着调用当前函数的函数的引用,如果是在全局作用域中调用当前函数,它的值为null. 1 <script type="text/javascript"> 2 function inner(){ 3 alert(arguments.callee); //指向拥有这个arguments对象的函数,即inner() 4 alert

js的隐含参数(arguments,callee,caller)使用方法

在提到上述的概念之前,首先想说说javascript中函数的隐含参数: arguments arguments 该对象代表正在执行的函数和调用它的函数的参数.[function.]arguments[n]参数function:选项.当前正在执行的 Function 对象的名字. n :选项.要传递给 Function 对象的从0开始的参数值索引.说明Arguments是进行函数调用时,除了指定的参数外,还另外创建的一个隐藏对象.Arguments是一个类似数组但不是数组的对象,说它类似数组是因为

JQuery Pagenation 知识点整理——arguments,callee,caller,apply应用(20150517)(转)

arguments 该对象代表正在执行的函数和调用它的函数的参数. [function.]arguments[n]参数function :选项.当前正在执行的 Function 对象的名字. n :选项.要传递给 Function 对象的从0开始的参数值索引. 说明 Arguments是进行函数调用 时,除了指定的参数外,还另外创建的一个隐藏对象.Arguments是一个类似数组但不是数组的对象,说它类似数组是因为其具有数组一样的访问性质及方 式,可以由arguments[n]来访问对应的单个参

JavaScript中的arguments,callee,caller

在提到上述的概念之前,首先想说说javascript中函数的隐含参数: arguments: arguments 该对象代表正在执行的函数和调用它的函数的参数. [function.]arguments[n]参数function:选项.当前正在执行的 Function 对象的名字. n :选项.要传递给 Function 对象的从0开始的参数值索引.说明Arguments是进行函数调用时,除了指定的参数外,还另外创建的一个隐藏对象.Arguments是一个类似数组但不是数组的对象,说它类似数组是

搞清arguments,callee,caller

arguments是什么? arguments是函数调用时,创建的一个类似的数组但又不是数组的对象,并且它存储的是实际传递给函数的参数,并不局限于函数声明的参数列表哦. 尼玛,什么意思? 写个demo看看,代码见下 <!DOCTYPE html> <head> <title>arguments</title> <meta http-equiv="Content-Type" content="text/html; chars

arguments callee caller

arguments 该对象代表正在执行的函数和调用它的函数的参数. Arguments是一个类似数组但不是数组的对象,说它类似数组是因为其具有数组一样的访问性质及方式,可以由arguments[n]来访问对应的单个参数的值,并拥有数组长度属性length.还有就是arguments对象存储的是实际传递给函数的参数,而不局限于函数声明所定义的参数列表,而且不能显式创建 arguments对象.arguments对象只有函数开始时才可用 callee属性是 arguments 对象的一个成员,它表示

js函数的内部属性---arguments,callee,caller

在接下来的几篇文章中,我大家谈谈函数的内部属性,arguments,callee,caller (1)arguments,是一个类数组对象,其中包含了传入函数的所有参数,主要用途是,保存函数的参数: 代码1: function aa(b){alert(arguments);} aa(4); function aa(a,b,c,d){alert(arguments.length);} aa(1,2,3,4); function aa(a,b,c,d){alert(arguments[2]);} a