Simple-Expand
http://redhotsly.github.com/simple-expand/を使用して、HTML ページのセクションを展開および折りたたみます。
JQuery コード:
$(function () {
$('.hello').simpleexpand();
});
$(function () {
$('.bye').simpleexpand();
});
HTML :
<a href='' id='hello' class='hello'> Hi </a>
<a href='' id='bye' class='bye'> Bye </a>
区分 :
<div class="content">
Hello
</div>
<div class="content">
Bye
</div>
クラスのリンクをクリックすると、テキストを含むタグhello
のみが呼び出され、リンクをクリックすると、テキストを含むタグが表示されます。これどうやってするの ?DIV
Hello
Bye
DIV
Bye