Display object contents - JS/jQuery

前端 未结 4 607
走了就别回头了
走了就别回头了 2021-02-05 21:51

With $(this).data(\"events\"); returning [object Object], I need to see what\'s actually going on in there. I found this:

var Finder =         


        
4条回答
  •  被撕碎了的回忆
    2021-02-05 22:11

    console.log($(this).data("events")) in Chrome (or other browsers) would allow you to drill into the object.

    Ctrl+Shift+J gets you to the console in Chrome.

提交回复
热议问题