Which elements will load first in an html page?

前端 未结 5 1971
萌比男神i
萌比男神i 2021-01-13 13:05

I want to know which elements (html tags, scripts, styles, images) will load first when opening a web page?

Can anybody help me? Thanks in advance.

5条回答
  •  甜味超标
    2021-01-13 13:46

    The html will load first obviously as this instructs the browser on the extended requirements: images, scripts, external stylesheets etc

    After that, the load order is pretty random - multiple connections will be initiated by most browsers and the order in which they return cannot be predicted.

提交回复
热议问题