MW211 EXIT

devlog
実践jQuery/表示関係
2014年03月25日
────────────────────────────────────────
【表示中の判定】
┌──────────────────────────────────────┐
│if ($(this).css('display') == 'block')                                      │
├──────────────────────────────────────┤
│if ($(this).is(':visible'))                                                 │
└──────────────────────────────────────┘
────────────────────────────────────────
【表示する】
┌──────────────────────────────────────┐
│$(this).css('display','block');                                             │
├──────────────────────────────────────┤
│$(this).fadeIn();                                         ※速度の指定が可能│
└──────────────────────────────────────┘
────────────────────────────────────────
【非表示にする】
┌──────────────────────────────────────┐
│$(this).css('display','none');                                              │
├──────────────────────────────────────┤
│$(this).fadeOut();                                        ※速度の指定が可能│
└──────────────────────────────────────┘
────────────────────────────────────────
分類:実践jQuery
前へ 1 次へ