Where to place JavaScript in an HTML file?

前端 未结 12 2357
萌比男神i
萌比男神i 2020-11-22 04:30

Say I have a fairly hefty JavaScript file, packed down to roughly 100kb or so. By file I mean it’s an external file that would be linked in via

12条回答
  •  Happy的楠姐
    2020-11-22 05:04

    The scripts should be included at the end of the body tag because this way the HTML will be parsed by the browser and displayed before the scripts are loaded.

提交回复
热议问题