关于javascript:放置< script>是不是错了

Is it wrong to place the <script> tag after the </body> tag?

将脚本标记放在正文的结束标记(之后)有多错误。?

1
2
3
4
5
6
7
<html>
  ....
  <body>
     ....
  </body>
  <script type="text/javascript" src="theJs.js">
</html>


它不会在标记之外进行验证。它也不会有太大的区别,除非您正在进行可能在body元素完全加载之前破坏ie的dom操作,以便在关闭之前放置它。

1
2
3
4
5
6
7
<html>
  ....
  <body>
     ....
     <script type="text/javascript" src="theJs.js">
  </body>
</html>