How to use Firebug's debugger functions?

前端 未结 1 2062
清歌不尽
清歌不尽 2020-12-14 04:21

I don\'t have an experience with any debugger tools geared towards my language, but I recently found some videos showcasing Firebug.

I\'m now using Firebug on a scri

相关标签:
1条回答
  • 2020-12-14 04:51
    • Continue F8- Resume execution as if the code was never stopped

    • Step Into F11 - Change the debugger context to run into the function the code is stopped on. If the code cannot step into the function, this is the same as Step Over

    • Step Over F10- Execute the code the debugger is stopped on, but stay within the current function

    • Step Out Ctrl+F11 - Execute code until the end of the current function, and resume debugging once it has returned

    These terms apply to all debuggers. Here is perhaps a better (or at least, more complete) explanation: http://www.developerfusion.com/article/33/debugging/4/

    0 讨论(0)
提交回复
热议问题