二级列表

 <!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>jQuery 实现折叠面板效果</title>
 <script type="text/javascript" src="http://libs.baidu.com/jquery/2.1.1/jquery.min.js" ></script>
 <style type="text/css">
 * { margin:0px; padding:0px; }
 body { background:transparent url('images/bg.gif') repeat scroll left top;font-size:14px; }
 ul, li, p, h1, h2, h3, div{ list-style:none; padding:0px; margin:0px; }
 .content { width:596px; _height:430px; min-height:430px; margin:0 auto; border:2px solid #AAAA00; border-top:none; background-color:#FFFFFF; overflow:hidden; }
 .toggle { width:450px; margin:20px auto; }
 .toggle dl dt { background:#F4FFF4 url('images/bg_toggle_up.gif') no-repeat scroll 8px 14px; height:40px;width:450px; line-height:40px; font-size:16px; font-weight:bold; color:#006600; cursor:pointer; margin:8px 0; padding-left:25px; display:block; }
 .toggle dl dt.current { background:#F4FFF4 url('images/bg_toggle_down.gif') no-repeat scroll 8px 14px; }
 .toggle dl dd { padding-left:10px; line-height:24px; }
 .toggle dl dd h2 { font-size:15px; }
 .toggle dl dd ul { padding-bottom:12px; }
 .toggle dl dd ul li { list-style:decimal inside none; }
 </style>
 <script type="text/javascript">
 $(function(){
 $(".toggle dl dd").hide();
 $(".toggle dl dt").click(function(){
 $(".toggle dl dd").not($(this).next()).hide();
 $(".toggle dl dt").not($(this).next()).removeClass("current");
 $(this).next().slideToggle(500);
 $(this).toggleClass("current");
 });
 });
 </script>
 </head>
 <body>
 <div class="content">
 <div class="toggle">
 <dl>
 <dt>简介一:亚洲</dt>
 <dd>
 <h2>主要国家:</h2>
 <ul>
 <li>中国,印度,日本,沙特阿拉伯等;</li>
 </ul>
 <h2>面积:</h2>
 <ul>
 <li>4457.9万平方公里;</li>
 </ul>
 </dd>
 <dt>简介二:欧洲</dt>
 <dd>
 <h2>主要国家:</h2>
 <ul>
 <li>英国、法国、德国等;</li>
 </ul>
 <h2>面积:</h2>
 <ul>
 <li>1016万平方公里;</li>
 </ul>
 </dd>
 <dt>简介三:非洲</dt>
 <dd>
 <h2>主要国家:</h2>
 <ul>
 <li>埃及、南非、肯尼亚、尼日利亚等;</li>
 </ul>
 <h2>面积:</h2>
 <ul>
 <li>3020万平方千米(包括附近岛屿);</li>
 </ul>
 </dd>
 </dl>
 </div>
 </div>
 </body>
 

</html>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值