jquery没有执行!!!我不知道为什么
$(".other-edithion").click(function(){
var city = $(this).closest('#city');
if (city.is(":hidden"))city.fadeIn("slow");
else {city.fadeOut("slow");}
});
$("#city").mouseleave(function(){
$("#city").fadeOut("slow");
});