我在 oracle apex 中使用 jQuery 设计了菜单。菜单是这样的
Parent1
child1
child2
parent2
child3
child4
parent3
child5
child6
我的问题是当我点击 parent1 时,只有 child1 和 child2 应该显示,但在我的情况下,每个父母都会被展开。并且用户可以看到所有的孩子。这不应该发生,用户应该只能看到单击的父子详细信息。
我的代码如下。
$(document).ready(function() {
var msg = false;
$('.dropdown_menu').click(function() {
msg = !msg;
if (msg)
$(this).parents('.parent_menu').find('.child_menu').slideDown("slow");
else
$('.child_menu').hide();
return false;
});
});