jQuery 抄袭笔记(25) :导航1
25 Oct 2011摘自w3school
:visible 选择器选取每个当前是可见的元素。
除以下几种情况之外的元素即是可见元素: 设置为 display:none type="hidden" 的表单元素 Width 和 height 设置为 0 隐藏的父元素(同时隐藏所有子元素)
01 <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
02 “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
03 <html xmlns=“http://www.w3.org/1999/xhtml”>
04 </span>
05 <meta http-equiv=“Content-Type” content=“text/html; charset=gb2312″ />
06</span>Hello Lazynight~~</title>
07 <script type=“text/javascript” src=“jquery-1.1.3.pack.js”></script>
08 <script type=“text/javascript”>
09 $(document).ready(function(){
10 $(“dd:not(:last)”).hide();
11 //初始化:隐藏 dd 不是最后一个的
12 //$(“dd:not(:first)”).hide(); 你也可以试试这个哦~!
13 $(“dt a”).click(function(){
14 $(“dd:visible”).slideUp(“fast”);
15 $(this).parent().next().slideDown(“fast”);
16 return false;
17 });
18 });
19 </script>
20
21 dl {width:150px;}
22 dl,dd {margin:;}
23 dt {background-color:#000;font-size:16px;padding:2px;margin:2px;}
24 dt a {color:#fff;}
25 dd a {color:#000;}
26 ul {list-style:none;padding:2px;}
27
28 </head>
29 </span>
30
02 “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
03 <html xmlns=“http://www.w3.org/1999/xhtml”>
04 </span>
05 <meta http-equiv=“Content-Type” content=“text/html; charset=gb2312″ />
06
07 <script type=“text/javascript” src=“jquery-1.1.3.pack.js”></script>
08 <script type=“text/javascript”>
09 $(document).ready(function(){
10 $(“dd:not(:last)”).hide();
11 //初始化:隐藏 dd 不是最后一个的
12 //$(“dd:not(:first)”).hide(); 你也可以试试这个哦~!
13 $(“dt a”).click(function(){
14 $(“dd:visible”).slideUp(“fast”);
15 $(this).parent().next().slideDown(“fast”);
16 return false;
17 });
18 });
19 </script>
20
21 dl {width:150px;}
22 dl,dd {margin:;}
23 dt {background-color:#000;font-size:16px;padding:2px;margin:2px;}
24 dt a {color:#fff;}
25 dd a {color:#000;}
26 ul {list-style:none;padding:2px;}
27
28 </head>
29 </span>
30
- </span>
- <a</span> href=“#”>歌曲</a></dt>
32- </span>
33- </span>
- <a</span> href=“#”>歌曲1</a></li>
35- <a</span> href=“#”>歌曲2</a></li>
36- <a</span> href=“#”>歌曲3</a></li>
37- <a</span> href=“#”>歌曲4</a></li>
38- <a</span> href=“#”>歌曲5</a></li>
39 </ul>
40 </dd>
41- <a</span> href=“#”>艺人</a></dt>
42- </span>
43- </span>
- <a</span> href=“#”>艺人1</a></li>
45- <a</span> href=“#”>艺人2</a></li>
46- <a</span> href=“#”>艺人3</a></li>
47- <a</span> href=“#”>艺人4</a></li>
48- <a</span> href=“#”>艺人5</a></li>
49 </ul>
50 </dd>
51- <a</span> href=“#”>专辑</a></dt>
52- </span>
53- </span>
- <a</span> href=“#”>专辑1</a></li>
55- <a</span> href=“#”>专辑2</a></li>
56- <a</span> href=“#”>专辑3</a></li>
57- <a</span> href=“#”>专辑4</a></li>
58- <a</span> href=“#”>专辑5</a></li>
59 </ul>
60 </dd>
61- <a</span> href=“#”>年份</a></dt>
62- </span>
63- </span>
- <a</span> href=“#”>年份1</a></li>
65- <a</span> href=“#”>年份2</a></li>
66- <a</span> href=“#”>年份3</a></li>
67- <a</span> href=“#”>年份4</a></li>
68- <a</span> href=“#”>年份5</a></li>
69 </ul>
70 </dd>
71 </dl>
72 </body>
73 </html> </div> 下载源码 转载请注明:[于哲的博客][1] » [jQuery 抄袭笔记(25) :导航1][2] [1]: http://lazynight.me [2]: http://lazynight.me/675.html - <a</span> href=“#”>年份2</a></li>
64 - <a</span> href=“#”>专辑2</a></li>
54 - <a</span> href=“#”>艺人2</a></li>
44 - <a</span> href=“#”>歌曲2</a></li>
34 - </span>
31