-
Notifications
You must be signed in to change notification settings - Fork 1
/
BOM,定时器
49 lines (35 loc) · 1.73 KB
/
BOM,定时器
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
BOM
定义:browser object model浏览器对象模型,专门操作浏览器窗口的api
window:代表整个窗口
完整窗口大小:window.outerWidth/outerHeight
文档显示区大小:window.innerWidth/innerHeight
history:封装当前窗口打开后,成功访问过的历史url记录
navigator:封装浏览器配置信息
document:封装当前正在加载的网页内容
location:封装了当前窗口正在打开的url地址
screen:封装了屏幕的信息
event:定义了网页中的事件机制
定时器:让程序按照指定时间间隔自动执行任务,比如网页动态效果,计时功能等
定时器分类:
1.周期性定时器
让程序按指定时间间隔反复自动执行一项任务
语法:setInterval(exp,time):周期性触发代码exp
exp:执行语句
time:时间周期,单位为毫秒
setInterval(function(){
console.log("hello world");
},1000);
停止定时器方法:1,给定时器起名
var timer=setInterval(function(){
console.log("hello world");
},1000);
2,停止定时器
clearInterval(timer);
2.一次性定时器
让程序延迟一段时间执行
语法:setTimeout(exp,time):一次性触发代码exp
exp:执行语句
time:间隔时间,单位为毫秒
setTimeout(function(){
alert("恭喜过关");
},3000);