例如,Id喜欢检查名为'test'的变量。
(function() {
var test = function(){alert("hello");};
test();
})();
添加断点是实现此目的的唯一方法,还是某些ninja-foo特定于[chrome | javascript |开发者工具]?
答案 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();
})();