这是我的jQuery:
$(document).ready(function() {
$('#our_location').click(function(){
$('#locations').show();
});
$('#locations a').click(function(){
$('#f_w').hide();
var id = $(this).attr('id');
$.ajax({
type: "POST",
url: "map_response.php",
data: ({id: id}),
success: function(response){
//alert(response);
$('#map_n_vilage').html(response);
$('#map_n_vilage').show();
$('.villages').show();
}
});
});
});
当我单击链接时,会打开#our_location
一个 div #locations
。#locations
当我单击ajax 中的任何锚标记并#map_n_vilage
显示 div 时...现在我想要的是,如果我单击除这些 div 之外的任何其他东西,我所有的这些 div 都应该消失。