javascript 逐行调试器
这可能听起来很疯狂,但是是否有一个调试器可以在执行代码的第一行自动中断?
示例:假设我打开了调试模式,然后单击了一个按钮。现在,智能调试器应该自动在 .click({}) 函数内的第一行设置断点。
这样就很容易看到起点,也很容易回溯。
肯定有什么东西。
谢谢
This might sound crazy but is there a debugger out there which automatically breaks on the first line of executed code ?
Sample : suppose I have debug mode on and I click on a button. Now the intelligent debugger should automatically set the breakpoint on the first line inside the .click({}) function.
This way it is very easy to see the starting point and very easy to backtrack.
There must surely be something.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
浏览器中的大多数调试器允许您将关键字插入
代码中,这将导致在执行过程中的该点发生中断。
Most debuggers in the browser allow you to insert the keyword
into your code which will cause a break to occur at that point in the execution.
Chrome 使用 CTRL+SHIFT+J。 ;) 你可以在那里放置断点。我觉得FF下也可以。新版本的 IE 也有 JavaScript 调试器(不过不记得快捷方式了)。
大多数浏览器中的 F12 都会打开调试器。
Chrome、Safari、IE 默认有此功能,FF 则有 Firebug 附加功能。
Chrome with CTRL+SHIFT+J. ;) You can put breakpoints there. I think it also works under FF. Also new versions of IE have JavaScript debuggers (don't remember the shortcut though).
F12 in most browser opens the debugger.
Chrome, Safari, IE have this by default, and for FF there is the Firebug add on.
您也可以从 Visual Studio 进行调试,从菜单中选择调试 -->附加到进程,然后选择 interexplorer 进程。但您应该先在 Internet Explorer 中启用脚本调试。
Also you can debug from visual studio, select debug from the menu --> Attach to process and then select the interter explorer process. But You should enable the script debuging in Internet Explorer first.