如何查看哪些javascript事件绑定到HTML元素?

时间:2011-06-22 02:50:07

标签: javascript events binding firebug

我正在尝试查看此页面如何处理左侧菜单的点击事件。 http://sg.jobsdb.com/SG/jobs/accounting/1?JSSRC=HPJC

使用Firebug,我可以看到点击对象但无法理解它在右侧显示内容的方式。

有什么方法可以看到源代码将事件绑定到元素而不搜索所有脚本?

感谢。

1 个答案:

答案 0 :(得分:1)

Chrome调试器已经找到了你想要的东西

isAttribute: false
lineNumber: 348
listenerBody: "function (){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;}"
node: HTMLTableCellElement
sourceName: "http://content.jobsdb.com.sg/Content/v50/Javascript/JobsDB.combined.min.js"
type: "click"
useCapture: false

我曾经是关于萤火虫的,但是铬调试器肯定已经赶上了我的意见,并且new improvements coming down the pipe我认为我不会很快回到萤火虫。