jq里面有一个data的方法,给dom元素绑定相关的数据的。当给dom用jq的方法绑定了事件,会生成对应的时间列表 可以看下面的例子(请在firefox中查看 因为firefox中对象支持toSource()) 复制代码 代码如下: <BR>window.onload = function(){ <BR>alert($.data($('#test')[0],'events'));//null <BR>alert($.data($('#test')[0],'handle'));//null <BR>$('#test') <BR>.bind('click',function(){ <BR>alert(1) <BR>}) <BR>.bind('mouseover',function(){ <BR>alert(2) <BR>}) <BR>.bind('click',function(){ <BR>alert(3) <BR>}) <BR>.bind('click',function(){ <BR>alert(4) <BR>}) <BR>alert($.data($('#test')[0],'events').toSource());//