在调试控制台代码上设置断点

时间:2012-05-22 18:41:29

标签: javascript debugging firefox google-chrome firebug

是否可以在chrome或firebug的调试控制台上输入的代码上设置断点?

1 个答案:

答案 0 :(得分:2)

肯定!将其输入控制台:

(function(){
    debugger;
    alert(0);
})();

DEMO, (open up console and re-run)