先に表示済みの要素
後から表示する要素
先に表示済みの要素
後から表示する要素
$('div.square').toggle();
※CSSプロパティで以下の様に設定
div.square{ float=left; width: 150px; height: 150px; margin:3px; padding:3px; border:1px solid #000; background-color:#cf9; } div.odd{ /*先に表示する要素*/ display:block; background-color:#fc9; } div.even{ /*後から表示する要素*/ display:none; background-color:#fc9; }
<div class="square odd" style="float:left">先に表示済みの要素</div> <div class="square even" style="float:left">後から表示する要素</div> <div class="square odd" style="float:left">先に表示済みの要素</div> <div class="square even" style="float:left">後から表示する要素</div>