Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设您在 asp.net 页面正文 onload 事件中有如下 javascript 代码示例。
function OnloadHandler() { ... debugger; ... }
我们知道在 IE 中运行这个,debugger就像一个断点,等待我们调试。但是当我在 Firefox 中运行它时。代码debugger;不起作用。我不得不手动设置 Firebug 的断点。谁能告诉我如何debugger在 Firefox 中启用?谢谢。
debugger
debugger;
使用 Firebug,debugger;只要执行到达它,关键字就应该起作用:
http://getfirebug.com/wiki/index.php/Debugger;_keyword