X

jQuery 表示チェック

jQueryで要素の表示非表示チェックは下記のコードで判定できる

if( $('#disp').is(':hidden' ) ){
  //非表示
} else {
  //表示
}
健巳:
Related Post