How to debug JavaScript in IE?

后端 未结 9 1532
刺人心
刺人心 2020-12-14 12:52

Is there a better way to debug JavaScript than MS Script Editor? I am searching for something like Firebug. Firebug Lite doesn\'t offer this functionality, though. ­­­­­­­­­

相关标签:
9条回答
  • 2020-12-14 13:11

    The only other debugger for JavaScript in the IE context is Visual Studio, but it'll cost you. What problems are you having with the script debugger that leads to think you need a better debugger?

    I suspect that what you are after are the additional features that aren't specifically about debugging JavaScript but analysing the HTML DOM that has been modified by the JavaScript and the monitoring of the conversation with the server.

    The IE developer toolbar I find particularly invaluable for debugging web apps as is Fiddler.

    0 讨论(0)
  • 2020-12-14 13:13

    Though not strictly debuggers, these are useful tools for your arsenal

    • http://www.debugbar.com/
    • http://projects.nikhilk.net/WebDevHelper/
    0 讨论(0)
  • 2020-12-14 13:15

    I would try and go for DebugBar. It's not as nice as Firebug, but it's very useful for javascript debugging...

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