如何使用 Google Chrome 上的开发人员工具查看范围内所有变量的列表及其在 Javascript 中的值?

How do I see the list of all variables in scope along with their values in Javascript using the Developer Tools on Google Chrome?

我尝试使用以下内容,它确实为我提供了范围内的变量列表。我还需要在控制台上查看它们的值。可能吗?

for(var b in window) { 
    if (window.hasOwnProperty(b)) 
        console.log(b);
}

您可以使用方括号 window[b]:

window 中获取 b 的值
for(var b in window)
{ 
  if(window.hasOwnProperty(b)) {
    console.log(b);
    console.log(window[b]);
  }
}