これが私の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がすべて消えるだけです。