-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path46(鼠标事件练习4).html
39 lines (38 loc) · 1.12 KB
/
46(鼠标事件练习4).html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
body{
background-color:red;
}
</style>
</head>
<body>
<div class="box">
<div class="a" id="aa" style="background-color:red;width:100px;height: 20px;"></div>
<div class="b" id="bb" style="background-color:green;width:100px;height: 20px;"></div>
<div class="c" id="cc" style="background-color:blue;width:100px;height: 20px;"></div>
<div class="d" id="dd" style="background-color:pink;width:100px;height: 20px;"></div>
</div>
<script>
var aa=document.getElementById("aa");
var bb=document.getElementById("bb");
var cc=document.getElementById("cc");
var dd=document.getElementById("dd");
document.getElementById("aa").onclick=function(){
document.body.style.backgroundColor="red";
}
bb.onclick=function(){
document.body.style.backgroundColor="green";
}
cc.onclick=function(){
document.body.style.backgroundColor="blue";
}
dd.onclick=function(){
document.body.style.backgroundColor="pink";
}
</script>
</body>
</html>