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.

console.log

概述

向web控制台输出一条消息.

语法

console.log(obj1 [, obj2, ..., objN);
console.log(msg [, subst1, ..., substN);

参数

obj1 ... objN
一个用于输出的JavaScript对象列表. 其中每个对象会以字符串的形式按照顺序依次输出到控制台.
msg
一个JavaScript字符串,其中包含零个或多个替代字符串.
subst1 ... substN
JavaScript对象,用来依次替换msg中的替代字符串.你可以在替代字符串中指定对象的输出格式.

查看向控制台输出文本来了解更多console对象的用法.

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本功能 (Yes) 4.0 (2.0) 8 (Yes) (Yes)
替代字符串 ? 9.0 (9.0) ? ? ?
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本功能 ? 4.0 (2.0) ? ? ?
替代字符串 ? 9.0 (9.0) ? ? ?

规范

不属于任何公开的规范

相关链接

文档标签和贡献者

 此页面的贡献者: zhouxu, teoli, charlie, khalid32, ziyunfei
 最后编辑者: zhouxu,