jqueryは要素が非表示かどうかを判断する

414 ワード

   :
if($(".birthdaySel").is(":hidden")){
                $(".birthdaySel").show();
            }else{
                $(".birthdaySel").hide();
            }


   :
if($(".birthdaySel").css("display")==none){
                $(".birthdaySel").show();
            }else{
                $(".birthdaySel").hide();
            }