我有这个 javascript 手风琴(.heading),我试图将它应用到一个无序列表(第一个“ul”标签)。奇怪的是,格式(主要集中在悬停颜色上)适用于有序列表,而不是“ul”标签。
HTML
<h3><a></a></h3>
<div>
<ul>
<li class="heading"></li>
<ul class="content">
<li></li>
<li></li>
<li></li>
</ul>
<li></li>
</ul>
</div>
CSS
.heading {
margin: 1px;
color: black;
padding: 3px 10px;
cursor: pointer;
position: relative;
font-weight: bold;
}
.heading:hover{
margin: 1px;
color: black;
padding: 3px 10px;
cursor: pointer;
position: relative;
font-weight: bold;
background:#cccccc
}
.content {
padding: 5px 10px;
}
p { padding: 5px 0; }
感谢您的任何帮助。
编辑:
这是我在
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".content").hide();
//toggle the componenet with class msg_body
jQuery(".heading").click(function()
{
jQuery(this).next(".content").slideToggle(500);
});
});
</script>