jQuery 1.8 find event handlers

本秂侑毒 提交于 2019-11-26 22:40:30

Use the data function as is done by jQuery internally.

On previous versions, you could call it like for other data :

obj.data('events');

In jQuery 1.8, this direct access was removed, so in recent versions you must call it like this :

$._data(obj[0], "events")

You can see it in action by opening the console in this fiddle : http://jsfiddle.net/8TpeP/2/

to find event handlers of an element in jQuery 1.8+ you've got to do this way:

$._data($("YOUR-SELECTOR-HERE").get(0), "events")

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!