- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试改进我的站点响应时间,但发现在最后一次文件加载(3.11 秒)和触发 DOMContent 以及加载事件(4.72 秒)之间存在延迟。图片已添加。
看来可能是JS处理的缘故,我把它放在了footer而不是head。
我想知道如何分析这个延迟并插入它。
最佳答案
我的 2 美分
https://developers.google.com/chrome-developer-tools/docs/timeline
在 DOMContentLoaded 和 Load 事件标记部分:
https://developers.google.com/chrome-developer-tools/docs/timeline-images/image28.png The Timeline annotates each recording with a blue and a red line that indicate, respectively, when the DOMContentLoaded and load events were dispatched by the browser. The DOMContentLoaded event is fired when all of the page’s DOM content has been loaded and parsed. The load event is fired once all of the document’s resources (images and CSS files, and so forth) have been fully loaded
您应该将所有 javascript 文件合并到一个 javascript 文件中,并将所有 css 文件合并到一个 css 文件中。您还应该 gzip(压缩)您的文件。
尝试 gruntjs (基于 nodejs),或 Apache Ant (基于 java),做一些自动处理(缩小、压缩、连接等)。存在其他自动任务软件。
关于jquery - 延迟触发 DOMContent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17561060/
我正在尝试改进我的站点响应时间,但发现在最后一次文件加载(3.11 秒)和触发 DOMContent 以及加载事件(4.72 秒)之间存在延迟。图片已添加。 看来可能是JS处理的缘故,我把它放在了fo
我想知道为什么我不能在 DOMContentLoaded 函数中添加事件监听器,我的问题是他在加载之前触发单击,然后在加载之后不执行任何操作: HTML This is a test. JS //
在 Chrome 的开发工具中,蓝色垂直线标记为“DOMContent 事件已触发”,红线标记为“load 事件已触发”。 “DOMContent 事件已触发”是否意味着浏览器开始执行内联 JavaS
我是一名优秀的程序员,十分优秀!