我想在单击链接时切换订单列表
<li id="1" style="display: list-item;">
<div class='group'>
<div style='float:left;'>
<span> </span>
**<a class='expand' href='#'>Group 1</a>**
</div>
<div style='float:right;'>
<a href='#'>Edit</a>
<a href='#'>Delete</a>
</div>
<div style='clear:both;'></div>
</div>
**<ol style='display:none;'>**
<li id="2" style="display: list-item;">
<div class='patent'>
<div style='float:left;'>
<span> </span>
<a href='#'>Patent 1</a>
<em>The description of patent 1</em>
</div>
<div style='float:right;'>
<a href='#'>Edit</a>
<a href='#'>Delete</a>
</div>
<div style='clear:both;'></div>
</div>
</li>
<li id="3" style="display: list-item;">
<div class='patent'>
<div style='float:left;'>
<span> </span>
<a href='#'>Patent 2</a>
<em>The description of patent 2</em>
</div>
<div style='float:right;'>
<a href='#'>Edit</a>
<a href='#'>Delete</a>
</div>
<div style='clear:both;'></div>
</div>
</li>
**</ol>**
</li>
当我在粗体链接上单击时,我希望切换 ol。同一个类可以有很多 ols 和很多链接。
我的尝试是
<script>
$(document).ready(function(){
$('.expand').click(function() {
$(this).closest('ol').slideToggle('slow');
});
});
</script>