Home  >  Q&A  >  body text

<script></script>标签的位置?

为什么有的代码<script></script>插在<head></head>标签中,有的插在<body></body>标签中?这两种有什么区别?

素颜素颜2763 days ago1134

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:31:40

    <script></script>Where is the tag? -PHP Chinese website Q&A-Where is the <script></script> tag? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 迷茫

    迷茫2016-12-22 10:35:02

    可以放在HTML页面中的任意位置

    放在<head>部分

    最常用的方式是在页面中head部分放置<script>元素,浏览器解析head部分就会执行这个代码,然后才解析页面的其余部分。进行页面初始化的js必须放在head里面。

    放在<body>部分
    JavaScript代码在网页读取到该语句的时候就会执行


    reply
    0
  • Cancelreply