我见过类似的问题,但我无法弄清楚我在这里做错了什么。在ajax调用成功完成后显示下拉列表然后我想在用户单击任何位置时隐藏它。我想删除该事件,因为如果它已经被隐藏,则无需隐藏它。
dropDown.slideDown('fast');
$(document).bind('click.test', function() {
alert('click');
dropDown.slideUp('fast');
$(document).unbind('click.test');
});
任何想法???