$(function(){
$("#accordion dd").hide();
$("#accordion dt a").click(function(){
$("#accordion dd").slideUp();
$(this).parent().next().slideDown();
return false;
});
});
next()
このnext関数はあくまで各要素のすぐ隣の要素のみを抽出し、次以降を選択するのではない。その場合はnextAllを用いること。
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.