我可以在 jsFiddle 中设置 Firebug 断点吗?
jsFiddle 通常用于在 SO 上进行说明和测试。当我测试/开发 javascript 时,我使用 Firebug 很多 - 断点是我的朋友。有没有人找到在 jsFiddle 测试代码中设置 Firebug 断点的方法?
jsFiddle is often used to illustrate and test here on SO. When I test/develop javascript I use Firebug a lot - breakpoints are my friends. Has anyone figured out a way of setting Firebug breakpoints in their jsFiddle test code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[已更新]
是的。它是选择“脚本”选项卡时使用的 js 文件下拉列表中的 fiddle.hshell.net/show。
[更新2]
现在似乎在
http://fiddle.jshell.net/_display/
中[更新3]
您可以使用< code>debugger; 向 JS 添加断点。
示例
[updated]
yes. it's the fiddle.hshell.net/show in the drop-down list of js files used when you select the scripts tab.
[updated 2]
seems to be in
http://fiddle.jshell.net/_display/
now[update 3]
You can use
debugger;
to add breakpoints to your JS.example here