从页面检查firebug以获取网络面板的结果

发布于 2024-11-15 05:01:51 字数 107 浏览 0 评论 0原文

如何从我的网页访问 Firebug API 以获取网络面板的输出?

我的目的是在我的网页中嵌入一个小脚本来显示 DomContentLoaded 所花费的时间

How can I access the Firebug API from my webpage to get output of the net panel?

My intention is to embed a small script in my webpage to show the time taken for DomContentLoaded

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

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

发布评论

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

评论(1

无敌元气妹 2024-11-22 05:01:51

您可以从网页访问的唯一 Firebug API 是控制台对象。
http://getfirebug.com/wiki/index.php/Console_API

该对象是明确的注入每个网页以登录控制台面板。

如果您想访问网络面板中的信息,则需要创建 Firefox/Firebug 扩展或使用现有的扩展(例如 NetExport),该扩展允许导出网络面板收集的所有数据: softwareihard.com/blog/netexport/" rel="nofollow">http://www.softwareishard.com/blog/netexport/

还有其他选项:

1) 您可以为“DOMContentLoad”事件注册一个侦听器并测量时间2

)您可以使用网络计时规范 http://dev.w3.org/2006/webapi /WebTiming/
这已经在 Chrome 中运行,并且 Firefox 的实现正在进行中,请参阅:
https://bugzilla.mozilla.org/show_bug.cgi?id=570341

洪扎

The only Firebug API you can access from a web page is the console object.
http://getfirebug.com/wiki/index.php/Console_API

This object is explicitly injected into every web page for logging into the Console panel.

If you want to access information in the Net panel you need to create a Firefox/Firebug extension or use an existing extension such as NetExport that allows to export all data collected by the Net panel: http://www.softwareishard.com/blog/netexport/

There are other options:

1) You can register a listener for "DOMContentLoad" event and measure the time yourself

2) You can use web timing specification http://dev.w3.org/2006/webapi/WebTiming/
This already works in Chrome and implementation for Firefox is in progress, see:
https://bugzilla.mozilla.org/show_bug.cgi?id=570341

Honza

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