我有一个列表,其结构如下:
<ul data-Id="2" class="listElement">
<li></li>
<li></li>
<li>
<ul data-Id="3" class="listElement" style="display: none">
<li></li>
<li>
<ul data-Id="4" class="listElement" style="display: none">
<li></li>
</ul>
</li>
</ul>
</li>
我需要能够定位当前隐藏的 ul 元素,并slidetoggle()对其执行操作。我尝试在 jQuery 中做到这一点,但效果不太好:
var test = 3; //i need to declare it as a var, because i get this from another item
$('.listElement').find('[data-Id="' + test + '"]').slideToggle("fast");
什么都没发生,我似乎找不到我在这里错过的东西
尚方宝剑之说
相关分类