Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Window.console

这篇文章需要文法复核。如何帮忙。

这篇翻译不完整。请帮忙从英语翻译这篇文章

只读属性Window.console返回一个对Console对象的引用,Window.console提供了向浏览器控制台输出日志信息的方法。这些方法仅应该用于调试,并不应该用来给最终用户呈现信息。

语法

var consoleObj = window.console;

示例

输出信息

第一个例子向控制台输出文字。

console.log("An error occurred while loading the content");

下边这个例子向控制台打印一个对象,可以通过点击展开组件查看对象的各项属性。

console.dir(someObject);

更多示例参考 "Usage" in Console

Specifications

Specification Status Comment
Console API Living Standard Initial definition.

当前各种浏览器之间的实现还有很多差异,推动一致的工作也在进行当中。

文档标签和贡献者

 此页面的贡献者: seajean, WwupengP
 最后编辑者: seajean,