--- title: console.trace slug: Web/API/Console/trace translation_of: Web/API/Console/trace ---

{{APIRef("Console API")}}

{{domxref("console")}} 的 trace() 方法向 Web控制台 输出一个堆栈跟踪。

{{AvailableInWorkers}}

在页面{{ domxref("console") }}文档中查看堆栈跟踪的详细介绍和示例。

语法

console.trace( [...any, ...data ]);

参数

...any, ...data {{optional_inline}}
Zero or more objects to be output to console along with the trace. These are assembled and formatted the same way they would be if passed to the {{domxref("console.log()")}} method.

Example

function foo() {
  function bar() {
    console.trace();
  }
  bar();
}

foo();

In the console, the following trace will be displayed:

bar
foo
<anonymous>

规范

Specification Status Comment
{{SpecName("Console API", "#trace", "console.trace()")}} {{Spec2("Console API")}} Initial definition

浏览器兼容性

{{Compat("api.Console.trace")}}

See also