Files
webveuje/javascript/2.在html中使用javascript.md
2020-12-16 15:58:10 +08:00

360 B
Raw Blame History

在html中使用javascript

引入 <script>

使用script标签引入

script标签属性

  • src
  • async
  • charset
  • defer
  • language(不推荐)
  • type不推荐

如何在html中使用

<script>
// javvscript 代码
</script>
<script src="url"></script>  <!-- 引入外部文本 --> 

标签位置

  • head
  • body