8

I am trying to style a piece of code that has the debugger keyword in it. I am using the debugging window(IE, FF, Opera) to see CSS style effects but the debugger is stopping every time I refresh the page(as it should).

Can I toggle or disable the debugger keyword through the browser(not by deleting it from my code) so I could do the style I want without it bothering me every time I refresh the page?

myApp.service('User', ['$localStorage', function ($localStorage) {
    debugger;
    this.$storage = $localStorage;
}]);

Thanks

The debugger statement

4

3 回答 3

16

您现在可以在右键单击行号后从菜单中选择“从不暂停此处”。它将阻止 Chrome 暂停debugger声明。

永远不要停在这里

于 2016-03-15T10:53:26.837 回答
0

您应该在不使用调试器时将其删除。它应该只在您当前正在测试的代码行中使用.... 如果您不直接在调试器之前或之后测试代码,则没有理由在代码中使用它。

于 2014-10-26T05:11:04.223 回答
0

f10 => 用于逐步通过行

f8 => 用于传递给另一个调试器

您可以在 chrome 性能选项卡中查看所有样式,而无需处理 javascript 问题

铬>>检查(F12)>性能>重新加载

检查(f12)>性能

于 2017-08-19T18:13:50.907 回答