使用开发人员工具在javascript中逐步执行匿名函数

时间:2012-10-23 18:14:26

标签: javascript

例如,Id喜欢检查名为'test'的变量。

(function() {
    var test = function(){alert("hello");};
    test();
})();   

添加断点是实现此目的的唯一方法,还是某些ninja-foo特定于[chrome | javascript |开发者工具]?

2 个答案:

答案 0 :(得分:1)

你可以试试这个: -

 console.error(e);

 (function() {
    var test = function(){alert("hello");};
     test();
     console.error(e);
  })();

答案 1 :(得分:1)

(function() {
  var test = function(){alert("hello");};
  debugger;
  test();
})();