jquery slidetoggle亲子

时间:2014-05-11 23:17:28

标签: javascript jquery menu parent-child parent

我的jQuery出了问题,我需要一些帮助。点击以下链接查看菜单:http://student.aii.avans.nl/cmd/shgzon/mediatech/

我使用slideToggle,当你按下第一个按钮时,它会滑动切换一个子菜单(工作正常)。但是当我按下另一个按钮时,我找到了隐藏该子菜单的方法。 (我尝试了很多解决它,我得到了接近......)我试图切换到另一个按钮,但它得到了错误的某种想法吗?我在这里得到了代码:

jQuery的:

//select all the `<li>` element that are children of the `.parent` element
$('.parent').children().click(function(){

//now find the `.child` elements that are direct children of the clicked `<li>` and toggle it into or out-of-view
$(this).children('.child').slideToggle('slow'); 


});

0 个答案:

没有答案