How can I set breakpoints in an external JS script in Firebug

前端 未结 5 1134

I can easily set breakpoints in embedded JS functions, but I don\'t see any way of accessing external JS scripts via Firebug unless I happen to enter them during a debug ses

5条回答
  •  爱一瞬间的悲伤
    2020-12-14 07:37

    After you place a break point in them, you can also call them by name in the firebug console, and see the output of (or step through) any intermediate functions. This can help when the main entry point calls many other helper functions, and you are really just concerned with how these helpers are working.

    That being said, I don't knwo anything about ASP.Net validators, so its possible this doesn't apply.

提交回复
热议问题