2011-07-01から1ヶ月間の記事一覧

んー

なかなかうまいようにいかないなー・・・

ちょっとjQueryメモ

$(function(){ $('.expand').each(function(){ var _t = $(this); _t.toggle( function(){ _t.find('li:not(:first)').hide(); } ,function(){ _t.find('li:not(:first)').show(); } ); }); }); // ▼こんなのに <ul class="expand"> <li><span>hoge</span></li> <li>10000000</li> <li>10000001</li> <li>10000002</li> </ul>