Debugging JavaScript events with Firebug

后端 未结 8 1088
情话喂你
情话喂你 2020-12-24 02:31

I need to set a breakpoint to certain event, but I don\'t know, where is it defined, because I\'ve got giant bunch of minimized JavaScript code, so I can\'t find it manually

8条回答
  •  爱一瞬间的悲伤
    2020-12-24 03:11

    You can use the debugger command anywhere in a javascript file. When the interpreter hits that statment, if a debugger is available (like Firebug) then it gets triggered

提交回复
热议问题