重点:
1.location 主机
2.history
3.navigator 判断浏览器所在系统
4.window.onload 页面加载完成
5.定时器
history
1 | window.onload = function () { |
1 | window.onload = function () { |
navigator
1 | // 通过 platform 可以判断浏览器所在打系统平台类型 |
定时器一
1 | //定义开启定时器 setInterval |
定时器二 一次性定时器
1 | let btn = document.querySelector("input"); |
小案例1
1 | <!DOCTYPE html> |
小案例2
1 | <!DOCTYPE html> |