console:log() 静态方法
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
console.log()
方法向 Web 控制台输出一条信息。这条信息可能是单个字符串(包括可选的替代字符串),也可能是一个或多个对象。
备注: 此特性在 Web Worker 中可用。
语法
js
log(obj1)
log(obj1, /* …, */ objN)
log(msg)
log(msg, subst1, /* …, */ substN)
参数
返回值
无(undefined
)。
输出对象
不要使用 console.log(obj)
,而应该使用 console.log(JSON.parse(JSON.stringify(obj)))
。
这样可以确保你所看到的 obj
的值是当前输出的值。否则,大多数浏览器会提供一个随着值的变化而不断更新的实时视图。这可能不是你想要的。
规范
Specification |
---|
Console Standard # log |
浏览器兼容性
BCD tables only load in the browser