为什么Firefox比Chrome更早地触发加载事件
https://livedemo.customers.na.apm.ibmserviceengage.com/APMLiveDemo/guide.html?task=3&se=false
我正在测试上述网站,发现Firefox上的页面加载时间比Chrome上的小得多。
在Firefox(devtools控制台)上:
>> performance.timing.loadEventEnd-performance.timing.navigationStart
>> 4914
在Chrome上:
>> performance.timing.loadEventEnd-performance.timing.navigationStart
>> 15153
看起来Firefox不会等待嵌入式iframe完全加载并触发加载事件。 如果是这种情况,为什么谷歌浏览器的行为如此不同?
这是浏览器引擎之间的内在差异吗? 什么是根本原因?
链接地址: http://www.djcxy.com/p/96285.html上一篇: Why Firefox fires load event much earlier than Chrome
下一篇: Bit confused between JavaScript Hoisting and Functional Scope