webveuje/javascript/2.在html中使用javascript.md

31 lines
360 B
Markdown
Raw Normal View History

2020-12-16 15:52:27 +08:00
# 在html中使用javascript
## 引入 <script>
> 使用script标签引入
### script标签属性
- src
- async
- charset
- defer
- language(不推荐)
- type不推荐
## 如何在html中使用
```html
<script>
// javvscript 代码
</script>
```
```html
<script src="url"></script> <!-- 引入外部文本 -->
```
## 标签位置
- head
- body