如何在 Google Chrome 开发者工具中获取格式化的控制台消息? [重复]

问题描述 投票:0回答:1

今天,我在 Facebook 上冲浪时收到格式化的控制台消息,这让我感到惊讶。

我目前不需要使用格式化的控制台消息,但我想知道如何打印格式化的控制台消息?这只是 chrome 的功能吗?

我在 Macbook 上使用 Google Chrome。

javascript facebook google-chrome google-chrome-devtools
1个回答
4
投票
console.log("%cThis will be formatted with large, blue text", "color: blue; font-size: x-large");

https://developers.google.com/web/tools/chrome-devtools/console/console-write#styling_console_output_with_css

© www.soinside.com 2019 - 2024. All rights reserved.