JavaScript:如何将消息打印到错误控制台?

2022-08-29 23:14:42

如何将消息打印到错误控制台,最好包含变量?

例如,类似下面的内容:

print('x=%d', x);

答案 1

安装 Firebug,然后可以使用 和 等(有关详细信息,请参阅文档)。console.log(...)console.debug(...)


答案 2
console.error(message); // Outputs an error message to the Web Console
console.log(message); // Outputs a message to the Web Console
console.warn(message); // Outputs a warning message to the Web Console
console.info(message); // Outputs an informational message to the Web Console. In some browsers it shows a small "i" in front of the message.

您还可以添加 CSS:

console.log('%c My message here', "background: blue; color: white; padding-left:10px;");

更多信息可以在这里找到: https://developer.mozilla.org/en-US/docs/Web/API/console