我有一个到目前为止可以使用的多级下拉菜单。我的问题如下:
这是我的代码:
$(document).ready(function(){
$('.dropdown-submenu a.test').on("click", function(e){
$(this).parent().parent().find('.dropdown-menu').hide();
$(this).next('ul').toggle();
e.stopPropagation();
e.preventDefault();
});
});
我该怎么做,当我单击其他菜单时,多级下拉列表中打开的子树始终关闭?