jquery 绑定事件 获取方式 --------------data event 获取

//绑定事件 bind event  

  $("body").on("click",function(){
        console.log("in")
    })

//获取事件

jQuery._data($("body")[0], "events").click[0].handler
原文地址:https://www.cnblogs.com/tom-chang/p/4801043.html