Google Chrome 也有一个控制台对象。其等效的 API 页面在哪里?

发布于 2024-11-08 17:14:20 字数 446 浏览 0 评论 0原文

如果我搜索“firebug console API”,它会将我带到此页面:

http://getfirebug.com/ wiki/index.php/Console_API

为我记录了 Javascript 控制台 API,我可以用它来写入 Firebug 控制台

Google Chrome 也有一个控制台对象。其等效的 API 页面在哪里?

例如,Firebug 允许: console.log('%c%s', 'color: #ABC', 'hi') 以特定颜色输出字符串

,而 google chrome 只接受 < code>console.log('%s', 'hi) - 它不接受 %c

if I google 'firebug console API' it leads me to this page:

http://getfirebug.com/wiki/index.php/Console_API

which documents for me the Javascript console API I can use to write to the firebug console

Google chrome also has a console object. Where is its equivalent API page?

For example, Firebug, allows: console.log('%c%s', 'color: #ABC', 'hi') to output a string in a particular color

While google chrome only accepts console.log('%s', 'hi) - it dosn't accept %c

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

め可乐爱微笑 2024-11-15 17:14:20

Chrome 使用 Webkit 引擎,与 Safari 相同,因此您可以查看 来自 Safari 的控制台 API

Chrome is using Webkit engine, same as Safari, so you can check out Console API from Safari.

葵雨 2024-11-15 17:14:20

没有完整文档的链接,但您至少可以通过运行 console.log(console); 收集所有可用的方法;

Don't have a link to full documentation but you can at least glean all the methods available by running console.log(console);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文