当我单击 Google 等更多选项时,我需要一个下拉菜单。它正在工作,但是当我在 div 外部单击时,它处于非活动状态。当我在 div 之外单击时,我想切换菜单。
我的JavaScript:
$('#other').click(function() {
$(this).toggleClass('active');
$(this).next('.dropdown').toggle();
return false;
});
$('.dropdown a').click(function() {
return false;
});