我有模态,在给定函数下面的调用中显示。我想在用户单击框外时自动关闭该模式框。我现在的功能是
function show_notification_dropdown(t) {
var container = $(".notification-dropdown");
if (container.css('display') == 'none') {
container.fadeIn();
//$(t).find('notify')
$.ajax({
url :baseUrl + 'notification/load',
success : function(c) {
if (pre_process_result(c)) return false;
container.find('.notification-lists').html(c);
}
})
} else {
container.fadeOut();
}
return false;
}