<!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 Menu</title>
<script type="text/javascript" src="http://www.webdm.cn/themes/script/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#wenzhang>dd>dl>dd").hide();
$("#wenzhang>dd>dl>dt").removeClass("open");
$.each($("#wenzhang>dd>dl>dt"), function(){
$(this).click(function(){
$("#wenzhang>dd>dl>dd").not($(this).next()).slideUp();
$(this).next().slideToggle(300);
});
//$(this).toggle(function(){$(this).addClass("open");},function(){$(this).removeClass("open");});
});
});
</script>
<style type="text/css">
dl,dd,dt,ul,li{ margin:0; padding:0; list-style:none;}
#wenzhang{ width:200px; text-align:center; font-size:12px;border-left:1px solid #dedede;border-right:1px solid #dedede; border-bottom:1px solid #dedede;}
#wenzhang dd dl dt{ border-top:1px solid #dedede; background:#f2f2f2; height:25px; line-height:25px; font-weight:bold;}
#wenzhang ul li{border-top:1px solid #efefef; line-height:25px; background:#f9f9f9;}
body {
margin-left: 0px;
margin-top: 0px;
}
</style>
</head>
<body>
<dl id="wenzhang">
<dd><dl><dt>AAAAAAAA</dt></dl></dd>
<dd>
<dl>
<dt >1111111111</dt>
<dd>
<ul>
<li>1111111111</li>
<li>1111111111</li>
<li>1111111111</li>
<li>1111111111</li>
<li>1111111111</li>
<li>1111111111</li>
</ul>
</dd>
</dl>
</dd>
<dd>
<dl>
<dt>2222222222</dt>
<dd>
<ul>
<li>2222222222</li>
<li>2222222222</li>
<li>2222222222</li>
<li>2222222222</li>
</ul>
</dd>
</dl>
</dd>
<dd>
<dl>
<dt>3333333333</dt>
<dd>
<ul>
<li>3333333333</li>
</ul>
</dd>
</dl>
</dd>
</dl>
</body>
</html>
沒有留言:
張貼留言