Where should I put [removed] tags in HTML markup?

2018-12-30 23:22发布

When embedding JavaScript in an HTML document, where is the proper place to put the <script> tags and included JavaScript? I seem to recall that you are not supposed to place these in the <head> section, but placing at the beginning of the <body> section is bad, too, since the JavaScript will have to be parsed before the page is rendered completely (or something like that). This seems to leave the end of the <body> section as a logical place for <script> tags.

So, where is the right place to put the <script> tags?

(This question references this question, in which it was suggested that JavaScript function calls should be moved from <a> tags to <script> tags. I'm specifically using jQuery, but more general answers are also appropriate.)

19条回答
临风纵饮
2楼-- · 2018-12-31 00:24

At The End of HTML Document

So that it will not effect the loading of the HTML document in the browser at the time of execution.

查看更多
登录 后发表回答