-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
128 lines (118 loc) · 2.77 KB
/
test.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>li/ul/li结构二级导航</title>
<!--<mce:script src="ee.js" mce_src="ee.js" language="javascript" type="text/javascript"></mce:script>-->
</head>
<mce:style type="text/css"><!--
ul,li{
list-style: outside none;
padding:0;
margin:0;
}
body{
line-height:20px;
}
#nav a{
display:block;
text-decoration:none;
}
#nav li{
background:#999;
float:left;
}
#nav a,#nav ul,#nav li{
width:80px;
}
#nav li ul{
float:left;
position:absolute;
left:-10000px;
}
#nav a:hover{
background:#03F;
}
#nav li ul li{
background:#FFF;
}
#nav li.reset ul{
left:auto;
}
--></mce:style><style type="text/css" mce_bogus="1">ul,li{
list-style: outside none;
padding:0;
margin:0;
}
body{
line-height:20px;
}
#nav a{
display:block;
text-decoration:none;
}
#nav li{
background:#999;
float:left;
}
#nav a,#nav ul,#nav li{
width:80px;
}
#nav li ul{
float:left;
position:absolute;
left:-10000px;
}
#nav a:hover{
background:#03F;
}
#nav li ul li{
background:#FFF;
}
#nav li.reset ul{
left:auto;
}</style>
<body>
<div id="nav">
<li><a href="#" mce_href="#">首页</a>
<ul id="hared">
<li><a href="#" mce_href="#">次页1</a></li>
<li><a href="#" mce_href="#">次页2</a></li>
<li><a href="#" mce_href="#">次页3</a></li>
<li><a href="#" mce_href="#">次页4</a></li>
<li><a href="#" mce_href="#">次页5</a></li>
<li><a href="#" mce_href="#">次页6</a></li>
<li><a href="#" mce_href="#">次页7</a></li>
</ul>
</li>
<li><a href="#" mce_href="#">首页</a>
<ul id="hared">
<li><a href="#" mce_href="#">次页1</a></li>
<li><a href="#" mce_href="#">次页2</a></li>
<li><a href="#" mce_href="#">次页3</a></li>
<li><a href="#" mce_href="#">次页4</a></li>
<li><a href="#" mce_href="#">次页5</a></li>
<li><a href="#" mce_href="#">次页6</a></li>
<li><a href="#" mce_href="#">次页7</a></li>
</ul>
</li>
</div>
<div style="clear:both" mce_style="clear:both"></div>
<div style="background:#666; width:300px; height:300px;">
</div>
</body>
<script language="javascript" type="text/javascript">
window.onload=function(){
var navlist = document.getElementById("nav").getElementsByTagName("li");
for (var i=0; i<navlist.length; i++)
{
navlist[i].onmouseover = function(){
this.className += "reset";
}
navlist[i].onmouseout = function(){
this.className=this.className.replace(new RegExp("( ?|^)reset//b"),"");
}
}
}
</script>
</html>