2

例如,我想检查名为“test”的变量。

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

添加断点是执行此操作的唯一方法,还是有一些特定于 [chrome | javascript | 开发者工具]?

4

2 回答 2

1

你可以试试这个: -

 console.error(e);

 (function() {
    var test = function(){alert("hello");};
     test();
     console.error(e);
  })();
于 2012-10-23T18:17:22.067 回答
1
(function() {
  var test = function(){alert("hello");};
  debugger;
  test();
})();  
于 2012-10-23T18:19:09.157 回答