方法一:
if($(".birthdaySel").is(":hidden")){
$(".birthdaySel").show();
}else{
$(".birthdaySel").hide();
}
方法二:
if($(".birthdaySel").css("display")==none){
$(".birthdaySel").show();
}else{
$(".birthdaySel").hide();
}