jq里面有一个data的方法,给dom元素绑定相关的数据的。当给dom用jq的方法绑定了事件,会生成对应的时间列表 可以看下面的例子(请在firefox中查看 因为firefox中对象支持toSource()) 复制代码 代码如下: ">http://common.cnblogs.com/script/jquery.js">> <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());//