Where should JS scripts go in an HTML file?

后端 未结 6 1587
遇见更好的自我
遇见更好的自我 2020-12-14 01:48

If you have JS code which is intended to run as part of loading/building the page, where in the HTML should this go? For instance modifying a

or add
6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-14 02:16

    I'd put it in a separate .js file and wrap the code so it is executed after the DOM is loaded. If you use a framework like jQuery or Prototype this should be easy.

提交回复
热议问题