Skip to content

Commit 0e3601e

Browse files
committed
demo1弹出框
移动到select上显示一个div框
1 parent b5401cb commit 0e3601e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

demo1.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>demo1</title>
6+
<style>
7+
#div1{width:200px;height:100px;background:#ccc;border:1px soild #999;display:none;}
8+
</style>
9+
</head>
10+
<body>
11+
<input type="checkbox" onmouseover="div1.style.display='block';" onmouseout="div1.style.display='none';" />
12+
<div id="div1">
13+
for you safe!!!
14+
</div>
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)