javascript 逐行调试器

发布于 2024-12-11 02:51:35 字数 168 浏览 0 评论 0原文

这可能听起来很疯狂,但是是否有一个调试器可以在执行代码的第一行自动中断?

示例:假设我打开了调试模式,然后单击了一个按钮。现在,智能调试器应该自动在 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蹲在坟头点根烟 2024-12-18 02:51:35

浏览器中的大多数调试器允许您将关键字插入

debugger;

代码中,这将导致在执行过程中的该点发生中断。

Most debuggers in the browser allow you to insert the keyword

debugger;

into your code which will cause a break to occur at that point in the execution.

漫雪独思 2024-12-18 02:51:35

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.

帥小哥 2024-12-18 02:51:35

您也可以从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文