如何在firefox中启用javascript调试器

时间:2012-11-20 01:35:10

标签: asp.net debugging firefox

假设您在asp.net page body onload事件中有如下所示的javascript代码示例。

function OnloadHandler()
{
    ...
    debugger;
    ...
}

我们知道在IE中运行它时,debugger就像一个断点,等待我们调试。但是当我在Firefox中运行它时。代码debugger;无效。我不得不手动设置Firebug的断点。 谁能告诉我如何在Firefox中启用debugger?感谢。

1 个答案:

答案 0 :(得分:3)

使用Firebug时,debugger;关键字应该在执行到达时起作用:

http://getfirebug.com/wiki/index.php/Debugger;_keyword