jquery1.x 版本
控制台输入 $.cache[$(‘#clickMe‘).get(0)[$.expando]].events 输出元素上绑定的事件
$.cache[$(‘#clickMe‘).get(0)[$.expando]].events
jquery1 , jquery2 版本 ( $._data会在jquery2之后的新版本中废除 )
控制台输入 $._data($(‘#clickMe‘).get(0)).events
$._data($(‘#clickMe‘).get(0)).events
Jquery 获取元素上绑定的事件
原文:https://www.cnblogs.com/sky-gfan/p/12072031.html