Google Chrome 也有一个控制台对象。其等效的 API 页面在哪里?
如果我搜索“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Chrome 使用 Webkit 引擎,与 Safari 相同,因此您可以查看 来自 Safari 的控制台 API。
Chrome is using Webkit engine, same as Safari, so you can check out Console API from Safari.
没有完整文档的链接,但您至少可以通过运行
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)
;