This commit is contained in:
luyuan 2020-12-16 15:52:27 +08:00
commit fae89dfdc1
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
5 changed files with 169 additions and 0 deletions

43
javascript/javascript1.md Normal file
View File

@ -0,0 +1,43 @@
# javascript简介
## javascript 实现
![image-20201216143448329](/home/xbx/.config/Typora/typora-user-images/image-20201216143448329.png)
- ecmascript
- dom
- bom
### ECMA
- 语法
- 类型
- 语句
- 关键字
- 保留字
- 操作符
- 对象
ECMA版本
### DOM 文档对象模型
是js操作html元素的接口
- DOM 视图
- DOM 事件
- DOM 样式
- DOM 遍历和范围
### BOM 浏览器对象模型
`针对于每个浏览器的实现`

View File

@ -0,0 +1,35 @@
# 基本概念
## 语法 了解一下 真正使用的时候再详细介绍
### 区分大小写
javascript 是区分大小写的
### 标识符
字母数字下划线开头
### 注释
- 单行注释
- 多行注释
### 严格模式
### 语句
语句是以 ; 分号结尾 但是可以省略 由解析器决定
### 关键字
![image-20201216153227720](/home/xbx/.config/Typora/typora-user-images/image-20201216153227720.png)
### 保留字
![image-20201216153248328](/home/xbx/.config/Typora/typora-user-images/image-20201216153248328.png)

View File

@ -0,0 +1,42 @@
# javascript简介
## javascript 实现
![image-20201216143448329](/home/xbx/.config/Typora/typora-user-images/image-20201216143448329.png)
- ecmascript
- dom
- bom
### ECMA
- 语法
- 类型
- 语句
- 关键字
- 保留字
- 操作符
- 对象
ECMA版本
### DOM 文档对象模型
是js操作html元素的接口
- DOM 视图
- DOM 事件
- DOM 样式
- DOM 遍历和范围
### BOM 浏览器对象模型
`针对于每个浏览器的实现`

18
javascript/变量.md Normal file
View File

@ -0,0 +1,18 @@
# 变量
> javascript的变量是不区分类型的
## 创建变量
`var 变量名;`
`var 变量名 = 变量值;`
没有值的时候 是创建一个变量 但它的值是`undefined` 这也是默认变量的值 所有没有赋值的变量都是`undefined`
赋值了之后就变成你赋值之后的值;
> 实际演示 并且介绍console.log()
## 变量类型

View File

@ -0,0 +1,31 @@
# 在html中使用javascript
## 引入 <script>
> 使用script标签引入
### script标签属性
- src
- async
- charset
- defer
- language(不推荐)
- type不推荐
## 如何在html中使用
```html
<script>
// javvscript 代码
</script>
```
```html
<script src="url"></script> <!-- 引入外部文本 -->
```
## 标签位置
- head
- body