当我单击产品时,会出现下拉列表,但是当我再次单击产品时,下拉菜单将不起作用here is screen shot
这是我的代码
this.show = function(){ var pos = $(this).position();
$(this).siblings('ul.dropdown-menu').css({
top: pos.top + $(this).outerHeight(),
left: pos.left
});
$(this).siblings('ul.dropdown-menu').show();
}
// Hide
this.hide = function() {
$(this).siblings('ul.dropdown-menu').hide();
}