向web控制台输出一条错误消息。
Note: This feature is available in Web Workers.
语法
console.error(obj1 [, obj2, ..., objN]); console.error(msg [, subst1, ..., substN]); console.exception(obj1 [, obj2, ..., objN]); console.exception(msg [, subst1, ..., substN]);
注意: console.exception()
是 console.error() 的别名;它们功能相同。
参数
obj1
...objN
- 要输出的 JavaScript对象。 这些对象的字符串形式按顺序加起来然后输出。
msg
- 一个字符串,它包含零个或多个替代字符串。
subst1
...substN
- JavaScript对象可以用此来替换
msg
里的替代字符串。你可以控制输出的格式。
规范
Specification | Status | Comment |
---|---|---|
Console API console.error() |
Living Standard | Initial definition |
浏览器兼容性
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
基本支持 | (Yes) | (Yes) | 4.0 (2.0) | 8 | (Yes) | (Yes) |
替代字符串 | (Yes) | ? | 9.0 (9.0) | ? | ? | ? |
console.exception alias |
未实现 | ? | 28.0 (28.0) | 未实现 | 未实现 | 未实现 |
Available in workers | ? | ? | 38.0 (38.0) | ? | ? | ? |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
基本支持 | (Yes) | (Yes) | 4.0 (2.0) | ? | ? | ? |
替代字符串 | ? | ? | 9.0 (9.0) | ? | ? | ? |
console.exception alias |
未实现 | ? | 28.0 (28.0) | 未实现 | 未实现 | 未实现 |
Available in workers | ? | ? | 38.0 (38.0) | ? | ? | ? |