从页面检查firebug以获取网络面板的结果
如何从我的网页访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从网页访问的唯一 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