Firebug 编程断点?
有没有办法在JavaScript中设置一个编程断点,以便Firebug停止执行代码,我可以在Firebug内部继续一步步调试。
类似于 python 中所做的事情,例如:
import pdb; pdb.set_trace()
Is there any way to set a programmatic breakpoint in JavaScript, so that Firebug will stop executing code and I can continue step by step debug inside the Firebug.
Something similar to what is done in python like:
import pdb; pdb.set_trace()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确,您可以使用
debugger
关键字。If I'm understanding you correctly, you can use the
debugger
keyword.