This commit is contained in:
luyuan 2020-12-28 09:56:22 +08:00
parent 7836f1f7de
commit 63638fff16
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
4 changed files with 62 additions and 1 deletions

View File

@ -15,3 +15,6 @@ xhr.send(null)
// xhr.responseText 后台返回内容 // xhr.responseText 后台返回内容
``` ```
JSON

14
javascript/23BOM.md Normal file
View File

@ -0,0 +1,14 @@
# BOM
## window对象
- open
- moveTo
- moveBy
## location
## navigator
## history

View File

@ -0,0 +1,22 @@
# 一些较难的
## 递归
自己调用自己
```javascript
function name(num){
var sum = sum + name(num--)
}
```
## 闭包
## this指向

22
javascript/25from.md Normal file
View File

@ -0,0 +1,22 @@
# from
提交表单
submit()
阻止提交
preventDefault()
重置表单
reset()
获取表单字段
elements