我试图创建一个下拉菜单,当第一次单击时,显示子元素,如果您单击一个孩子,则转到子URL,如果再次单击国家/地区名称,子菜单将折叠。
我的工作在一定程度上是因为我无法让孩子们链接到他们各自的链接。
我猜它与我的e.preventDefault
?
JS
$('.sub-lang').on('click', function(e){
if ($(this).hasClass('active') && $(e.target).parent().hasClass('active')) {
$(this).removeClass('active');
$(this).css('height', 'auto');
$(this).children('ul').hide();
} else {
$(this).addClass('active');
$(this).css('height', $(this).find('ul').height() + 65 );
$(this).children('ul').show();
}
e.preventDefault();
});
答案 0 :(得分:0)
只需在您的语言的href属性中添加javascript:void(0);
。
<a href="javascript:void(0);">English</a>
并删除preventDefault:
$('.sub-lang').on('click', function(e){
if ($(this).hasClass('active') && $(e.target).parent().hasClass('active')) {
$(this).removeClass('active');
$(this).css('height', 'auto');
$(this).children('ul').hide();
} else {
$(this).addClass('active');
$(this).css('height', $(this).find('ul').height() + 65 );
$(this).children('ul').show();
}
});
答案 1 :(得分:0)
问题是,当项目嵌套在点击目标(.sub-lang
元素)下时,点击事件正在传播给祖先。因此,e.preventdefault()
会阻止该元素内任何位置的所有链接点击执行其默认行为。
您可以检查目标是否为子链接并有条件地返回true或false以允许默认行为:
return !$(e.target).parent().hasClass('active');