本文介绍了测量网页中所有(js)对象的工具的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有任何扩展程序或工具来检查Dom的大小。就像firebug的Dom面板一样,它显示了在网页中声明的所有事件和函数,这可以更像该对象的大小以及它加载多少毫吗?

Is there any extension or tool to check size of Dom. Like firebug have Dom panel, which shows all events and functions declared in a web page, can this show more like size of the object, and in how many millis it gets loaded?

我正在寻找一种工具来测量网页中的所有(js)对象。

I'm looking for a tool to measure all (js)objects in a webpage.

预先感谢。

推荐答案

您是否正在寻找可以简单运行自己的工具(例如Google Chrome浏览器的分析工具)或可以在您的网站上部署的工具?

Are you looking for a tool that you can simply run yourself (like Google Chrome's analytic tools) or something you can deploy on your website?

如果您只需要测量,我会推荐Google Chrome的检查窗口。在配置文件下,堆快照将概述页面上正在使用的所有资源,以及为每个资源分配了多少内存。

If you just need the measurements, I'll recommend Google Chrome's Inspection window. Under "Profiles" a "Heap Snapshot" will give you an overview of all of the resources being used on the page, and how much memory is allocated to each.

这篇关于测量网页中所有(js)对象的工具的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 23:27